Function Not Implemented: 'lib' -> 'my/path/to/venv/lib64'
OS: Manjaro Python: 3.8 On my computer I have 2 partitions, one is where my Manjaro is installed, and the other one it's a secondary SSD. Every time when I'm running this command v
Solution 1:
Your SSD is most probably formatted as FAT filesystem, FAT doesn't implement symlinks and virtualenvs by default use symlinks to that version of python they have been created with. You can try virtualenv --always-copy
to avoid symlinks on the second disk.
Post a Comment for "Function Not Implemented: 'lib' -> 'my/path/to/venv/lib64'"