Replies: 2 comments 4 replies
-
@bdg221 I think this might be a mac specific error. Unless you forgot to cd to the mitiq folder after activating your virtual environment. I just tested it out on linux mint with a new environment. My workflow is below. I don't use conda for virtual environments though which makes it different from what's in the documentation:
Edit: I just figured out there needs to be quotations in this. Can you please give it a try with one of the following? I can't test it out on my device because it works without the quotations on my device.
https://stackoverflow.com/questions/30539798/zsh-no-matches-found-requestssecurity |
Beta Was this translation helpful? Give feedback.
-
Closing this discussion as an issue has been created. |
Beta Was this translation helpful? Give feedback.
-
I was following the instructions on the Contributing page (https://mitiq.readthedocs.io/en/stable/contributing.html) and when I tried to run the command in step 5, "pip install -e .[development]" the command failed with "no matches found: .[development].
(mitiqenv) briangoldsmith@Brians-MBP mitiq % pip install -e .[development]
zsh: no matches found: .[development]
I then ran "grep -r 'development'" and saw the command in the Makefile. I subsequently ran "make install" which ran the "pip install -e .[development] without issue.
(mitiqenv) briangoldsmith@Brians-MBP mitiq % make install
pip install -e .[development]
Obtaining file:///Users/briangoldsmith/Documents/Mitiq/mitiq
Installing build dependencies ... done
Checking if build backend supports build_editable ... done
.....
The conda environment was just created following the steps provided.
(mitiqenv) briangoldsmith@Brians-MBP mitiq % python --version
Python 3.11.4
This is being run on a a 2021 MacBook Pro with an M1 Pro chip.
Beta Was this translation helpful? Give feedback.
All reactions