Hi I'm facing below error while trying to install ...
# general
l
Hi I'm facing below error while trying to install Openlane.. Can you help me with it ? P.S.-Pip and wheel are all up to date
m
What instructions are you following to install openlane?
l
m
What is your intended usage? Do you plan to submit to efabless shuttles or use openlane for something else?
l
currently intend to use it in an internship program ...
m
Looks like you’re installing on macos so be sure to use an appropriate docker container. What you might try is installing the
caravel_user_project
. This includes the
openlane
installation. If it works, you could delete the
caravel_user_project
when you’re done. Referencing here, you might try
Copy code
export OPENLANE_ROOT=<openlane-installation-directory>   # I suggest starting from an empty directory as the contents may be cleared
export PDK=ROOT=<pdk-installation-directory>     # I suggest starting from an empty directory as the contents may be cleared
export PDK=sky130A    # or sky130B or gf180mcuC
git clone --depth=1 <https://github.com/efabless/caravel_user_project>
cd caravel_user_project
make setup
This should install openlane in
OPENLANE_ROOT
and the pdk in
PDK_ROOT
. If that’s all you need, you should be able to delete
caravel_user_project
when you’re done.
l
Thank you . Will try this approach .