pyquil
pyquil copied to clipboard
No module named 'ruamel'
Pre-Report Checklist
- [x] I am running the latest versions of pyQuil and the Forest SDK
- [x] I checked to make sure that this bug has not already been reported
Issue Description
Hello developers, I'm encountering a problem in opening a jupyter notebook from this GitHub repository:
https://github.com/hsim13372/QCompress
When I run the example [qae_two_qubit_demo.ipynb]
I got the following error:
ModuleNotFoundError Traceback (most recent call last)
~/opt/anaconda3/lib/python3.8/site-packages/pyquil/init.py in
~/opt/anaconda3/lib/python3.8/site-packages/pyquil/quil.py in
~/opt/anaconda3/lib/python3.8/site-packages/rpcq/init.py in
~/opt/anaconda3/lib/python3.8/site-packages/rpcq/_client.py in
~/opt/anaconda3/lib/python3.8/site-packages/rpcq/_base.py in
ModuleNotFoundError: No module named 'ruamel'
and [[run_landscape_scan.ipynb]] (https://github.com/hsim13372/QCompress/blob/master/examples/run_landscape_scan.ipynb)
ModuleNotFoundError Traceback (most recent call last)
~/opt/anaconda3/lib/python3.8/site-packages/pyquil/init.py in
~/opt/anaconda3/lib/python3.8/site-packages/pyquil/quil.py in
~/opt/anaconda3/lib/python3.8/site-packages/rpcq/init.py in
~/opt/anaconda3/lib/python3.8/site-packages/rpcq/_client.py in
~/opt/anaconda3/lib/python3.8/site-packages/rpcq/_base.py in
ModuleNotFoundError: No module named 'ruamel'
Please kindly shed some light on me, and thanks a lot!
Odd, it looks like ruamel.yaml
is not being installed. That's a requirement of rpcq
which is itself a requirement of pyquil
, so installing pyquil
should cause everything to be installed correctly. Can you try reinstalling the latest pyquil using the latest pip
? So something like:
pip install --upgrade pip
followed by pip install --upgrade pyquil
Closed due to inactivity