-
Notifications
You must be signed in to change notification settings - Fork 33
Description
Hello team,
I installed Python 3.10.8 and pip 24..
After that installed some dependencies using pip install. After it I tried to install pip-accel using the command: pip install pip-accel[s3]
Then it gives me the error:
ERROR: To modify pip, please run the following command:
C:\PythonLocation\python.exe -m pip install pip-accel[s3]
Then I ran the command as asked above and it shows:
Collecting pip-accel[s3]
Using cached pip_accel-0.43-py3-none-any.whl
Collecting cached-property>=0.1.5 (from pip-accel[s3])
Using cached cached_property-1.5.2-py2.py3-none-any.whl.metadata (11 kB)
Collecting coloredlogs>=3.0 (from pip-accel[s3])
Using cached coloredlogs-15.0.1-py2.py3-none-any.whl.metadata (12 kB)
Collecting humanfriendly>=1.42 (from pip-accel[s3])
Using cached humanfriendly-10.0-py2.py3-none-any.whl.metadata (9.2 kB)
Collecting pip<7.2,>=7.0 (from pip-accel[s3])
Using cached pip-7.1.2-py2.py3-none-any.whl.metadata (2.0 kB)
Requirement already satisfied: setuptools>=7.0 in c:\pythonLocation\lib\site-packages (from pip-accel[s3]) (63.2.0)
Collecting boto>=2.32 (from pip-accel[s3])
Using cached boto-2.49.0-py2.py3-none-any.whl.metadata (7.3 kB)
Collecting pyreadline3 (from humanfriendly>=1.42->pip-accel[s3])
Using cached pyreadline3-3.4.1-py3-none-any.whl.metadata (2.0 kB)
Using cached boto-2.49.0-py2.py3-none-any.whl (1.4 MB)
Using cached cached_property-1.5.2-py2.py3-none-any.whl (7.6 kB)
Using cached coloredlogs-15.0.1-py2.py3-none-any.whl (46 kB)
Using cached humanfriendly-10.0-py2.py3-none-any.whl (86 kB)
Using cached pip-7.1.2-py2.py3-none-any.whl (1.1 MB)
Using cached pyreadline3-3.4.1-py3-none-any.whl (95 kB)
Installing collected packages: pyreadline3, pip, cached-property, boto, humanfriendly, coloredlogs, pip-accel
Attempting uninstall: pip
Found existing installation: pip 24.0
Uninstalling pip-24.0:
Successfully uninstalled pip-24.0
Successfully installed boto-2.49.0 cached-property-1.5.2 coloredlogs-15.0.1 humanfriendly-10.0 pip-7.1.2 pip-accel-0.43 pyreadline3-3.4.1
After this installation process, if I try to run for e.g. this command "pip-accel install robotframework", it shows me this error below:
Traceback (most recent call last):
File "C:\PythonLocation\lib\runpy.py", line 196, in run_module_as_main
return run_code(code, main_globals, None,
File "C:\PythonLocation\lib\runpy.py", line 86, in run_code
exec(code, run_globals)
File "C:\PythonLocation\Scripts\pip-accel.exe_main.py", line 4, in
File "C:\PythonLocation\lib\site-packages\pip_accel_init.py", line 54, in
from pip_accel.bdist import BinaryDistributionManager
File "C:\PythonLocation\lib\site-packages\pip_accel\bdist.py", line 35, in
from pip_accel.caches import CacheManager
File "C:\PythonLocation\lib\site-packages\pip_accel\caches_init.py", line 25, in
from pip_accel.exceptions import CacheBackendDisabledError
File "C:\PythonLocation\lib\site-packages\pip_accel\exceptions.py", line 36, in
from pip_accel.utils import compact
File "C:\PythonLocation\lib\site-packages\pip_accel\utils.py", line 28, in
from pip.commands.uninstall import UninstallCommand
File "C:\PythonLocation\lib\site-packages\pip_init_.py", line 13, in
from pip.utils import get_installed_distributions, get_prog
File "C:\PythonLocation\lib\site-packages\pip\utils_init_.py", line 23, in
from pip.vendor import pkg_resources
File "C:\PythonLocation\lib\site-packages\pip_vendor\pkg_resources_init.py", line 32, in
import symbol
ModuleNotFoundError: No module named 'symbol'