You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure what's happening here but I can't seem to pip install with -e. I've tried this in python 3.6 and 3.7. Bails with
Running setup.py develop for packratt
ERROR: Command errored out with exit status 1:
command: /home/landman/venvs/pkrat/bin/python3 -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/home/landman/Projects/packratt/setup.py'"'"'; __file__='"'"'/home/landman/Projects/packratt/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' develop --no-deps
cwd: /home/landman/Projects/packratt/
Complete output (3 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'setuptools'
----------------------------------------
ERROR: Command errored out with exit status 1: /home/landman/venvs/pkrat/bin/python3 -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/home/landman/Projects/packratt/setup.py'"'"'; __file__='"'"'/home/landman/Projects/packratt/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' develop --no-deps Check the logs for full command output.
but setuptools is installed and at the latest version
(pkrat) LAPTOP-ED4N50Q2 :: ~/Projects » python 1 ↵
Python 3.6.9 (default, Jan 26 2021, 15:33:00)
[GCC 8.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import setuptools
>>> setuptools.__version__
'57.0.0'
Any ideas?
The text was updated successfully, but these errors were encountered:
Not sure what's happening here but I can't seem to pip install with -e. I've tried this in python 3.6 and 3.7. Bails with
but setuptools is installed and at the latest version
Any ideas?
The text was updated successfully, but these errors were encountered: