Reputation: 143
I have one error: ModuleNotFoundError: No module named '_sysconfigdata_x86_64_conda_linux_gnu' Using comand: pip3 install --editable ./BindingSitesFromFragments
Upvotes: 13
Views: 17644
Reputation: 31
I had the same problem, and I solved it installing python=3.9
, but at first it seemed that the problem was still there, but I deactivated the environment, activated again and the problem was gone. I guess that might work with your python version as well if you install it, deactivate and reactivate the conda environment.
Upvotes: 0
Reputation: 21
works however, it will throw an another error, Downgrade the pandas to 0.20.3 or 1.4.1 worked for me #-------------------------------- from pandas.util._exceptions import find_stack_level ImportError: cannot import name 'find_stack_level' from 'pandas.util._exceptions' (/home/pontis/anaconda3/envs/stats1/lib/python3.8/site-packages/pandas/util/_exceptions.py)
Upvotes: -1
Reputation: 349
I had this problem after installing anaconda (w/ python3.8.8) on Ubuntu 20.04 on an aws ec2 instance.
Here is my error message:
"ModuleNotFoundError: No module named '_sysconfigdata_x86_64_conda_linux_gnu'"
After a search
sudo find / -name _sysconfigdata_x86_64*`
and found the file
/home/ubuntu/anaconda3/lib/python3.8/_sysconfigdata_x86_64_conda_cos6_linux_gnu.py
Copying this file to the name of the missing file solved my problem
cd ~/anaconda3/lib/python3.8
cp _sysconfigdata_x86_64_conda_cos6_linux_gnu.py _sysconfigdata_x86_64_conda_linux_gnu.py
Upvotes: 34