Creating the virtual environment fails #144
-
After installing crossenv (
I understand the warnings (but tend to ignore them for now), but I do not understand the error. Which Makefile is crossenv looking for? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Crossenv is trying to gather information about the builld-python installation from the Makefile that was used to build Python. This is produced after you run I'm not entirely sure what the issue would be here, but here are some suggestions. First, I always recommend building your own build-python rather than using the system version. While I would also recommend installing your build-python to a local directory so that you don't need to use sudo, ensure that |
Beta Was this translation helpful? Give feedback.
Crossenv is trying to gather information about the builld-python installation from the Makefile that was used to build Python. This is produced after you run
configure
and installed in the Python library dir (e.g., the system default Python might put it in/usr/lib/python3.8/config-3.8-x86_64-linux-gnu/Makefile
).I'm not entirely sure what the issue would be here, but here are some suggestions. First, I always recommend building your own build-python rather than using the system version. While I would also recommend installing your build-python to a local directory so that you don't need to use sudo, ensure that
sudo python3.5
andpython3.5
are running the same command: sudo doesn't use t…