I have installed the open-pdks using: ```git clone...
# open_pdks
j
I have installed the open-pdks using:
Copy code
git clone <git://opencircuitdesign.com/open_pdks>
cd open_pdks/
./configure --enable-sky130-pdk --prefix=/home/jorge
make
and at the end some errors appear regarding conda (first image). I am a begginer and don't know it that is important. Also, after:
Copy code
make install
I get more errors because the file '/home/jorge/open_pdks/sky130/sky130A' is not found (second image). Previously to install open_pdks, I installed magic (8.3.386) and nsgpice 39. Please, any help with the errors? Thanks a lot.
h
You might want to look into volare (https://github.com/efabless/volare), makes the PDK install much easier.
t
@Jorge García: My understanding is that the conda error is something that happens in Debian. I've been able to work around it by running
make
twice in a row. I've been told that the problem is the conda version in Debian and that
conda update -y conda
fixes the problem.
j
Thanks Harald and Tim. I runned two times "make" and those errors disapeared and the "make install" worked. Anyway, running the second time of "make" lot of errors related to magic appear (as shown on the images). The good news is that I can simulate the xschem examples (in top.sch) without problems.
t
The error messages from magic are normal; I have not tried to filter out all the various error conditions. Magic generates way too many error messages for non-fatal conditions.
j
@Tim Edwards Thanks!!