qiskit-community / qiskit-metal

Quantum Hardware Design. Open-source project for engineers and scientists to design superconducting quantum devices with ease.
https://qiskit-community.github.io/qiskit-metal/
Apache License 2.0
270 stars 201 forks source link

gdspy package not available through the conda-forge channel #990

Closed arantxapardue closed 2 weeks ago

arantxapardue commented 1 month ago

Information

What is the current behavior?

When creating a new environment from the terminal in VS Code, the environment.yml file cannot be implemented all of the way due to gdspy (version 1.6.12) not being available through the conda-forge channel.

Steps to reproduce the problem

From base environment: conda env create -n env4-dev --file environment.yml Which gives error: PackagesNotFoundError: The following packages are not available from current channels: - gdspy==1.6.12

What is the expected behavior?

Should create an environement with all packages listed in environment.yml file.

Suggested solutions

Maybe use a different channel.

arantxapardue commented 2 weeks ago

fixed with conda install -c conda-forge gdspy

zlatko-minev commented 1 week ago

Great, thank you for the update