ryszard314159
ryszard314159
Yes, it does. ``` (plyvel) $ pip install --verbose plyvel Using pip 23.0.1 from /home/ryszard/.virtualenvs/plyvel/lib/python3.11/site-packages/pip (python 3.11) Requirement already satisfied: plyvel in ./lib/python3.11/site-packages (1.5.0) (plyvel) $ ``` and ``` (plyvel)...
Full log for the fresh install without cache (ModuleNotFoundError: No module named 'plyvel' still persist) ``` $ virtualenv ~/.virtualenvs/fresh created virtual environment CPython3.11.4.final.0-64 in 134ms creator CPython3Posix(dest=/home/ryszard/.virtualenvs/fresh, clear=False, no_vcs_ignore=False, global=False)...
``` (fresh) $ which python /home/ryszard/.virtualenvs/fresh/bin/python (fresh) $ python --version Python 3.11.4 (fresh) $ python -c "import sys; print(sys.path)" ['', '/usr/lib/python311.zip', '/usr/lib/python3.11', '/usr/lib/python3.11/lib-dynload', '/usr/local/lib/python3.11/dist-packages', '/usr/lib/python3/dist-packages', '/usr/lib/python3.11/dist-packages'] (fresh) $ (fresh) $...
> weird, i expected to see the venv in the import path (sys.path) but it seems missing? Yes, apparently. This works: ``` (fresh) $ export PYTHONPATH=$PWD/lib/python3.11/site-packages (fresh) $ python -c...
Apparently the same problem with `python3 -m venv` `sys.path` is not updated properly... ``` $ python3 -m venv VENV $ cd VENV/ $ ls bin include lib lib64 pyvenv.cfg $...
Does it work for you? Is it something peculiar to my setup?
Thank you for this nice and useful app!