ok, i ran these instructions, and it worked fine. so lets take this step by step.
First, run stash.
Next, type selfupdate
force quit, then run stash again.
now, paste what you see:
StaSh v0.7.5 on python 3.6.1
Warning: you are running StaSh in python3. Some commands may not work correctly in python3.
Please help us improving StaSh by reporting bugs on github.
Tip: You can use the callable StaSh object to issue more commands from a script, e.g. _stash('some_command')
[~/Documents]$
if it instead says you are running on python 2.7, we will need to fix that.
assuming you are running on py3, continue:
pip list
paste results here.
Next, lets delete everything in site packages, except stash.
rm -rf site-packages-3/*
rm -rf site-packages-3/.*
These might take a while... wait until promot returns.
Force quit again, launch stash.
Now, lets install urllib3, followed by requests:
StaSh v0.7.5 on python 3.6.1
Warning: you are running StaSh in python3. Some commands may not work correctly in python3.
Please help us improving StaSh by reporting bugs on github.
Tip: Show detailed traceback when a script fails with stashconf py_traceback 1
[~/Documents]$ pip install urllib3==1.21.1
Querying PyPI ...
Downloading package ...
Opening: https://files.pythonhosted.org/packages/24/53/f397db567de0aa0e81b211d81c13c41a779f14893e42189cf5bdb97611b2/urllib3-1.21.1-py2.py3-none-any.whl
Save as: /private/var/mobile/Containers/Data/Application/A2523AAF-82EC-4BCD-B197-85DEBFB5F1DD/tmp/urllib3-1.21.1-py2.py3-none-any.whl (131717 bytes)
[====================] 100.00% | 128.6KiB
Installing wheel: urllib3-1.21.1-py2.py3-none-any.whl...
Package installed: urllib3
[~/Documents]$ pip list
urllib3 (1.26.9) - HTTP library with thread-safe connection pooling, file post, and more.
[~/Documents]$ pip install requests
Querying PyPI ...
Downloading package ...
Opening: https://files.pythonhosted.org/packages/2d/61/08076519c80041bc0ffa1a8af0cbd3bf3e2b62af10435d269a9d0f40564d/requests-2.27.1-py2.py3-none-any.whl
Save as: /private/var/mobile/Containers/Data/Application/A2523AAF-82EC-4BCD-B197-85DEBFB5F1DD/tmp/requests-2.27.1-py2.py3-none-any.whl (63133 bytes)
[====================] 100.00% | 61.7KiB
Installing wheel: requests-2.27.1-py2.py3-none-any.whl...
Warning: unknown dependency requirement: 'sys_platform'
Warning: Adding dependency 'win-inet-pton', ignoring requirements for dependency.
Package installed: requests
Dependency already installed: urllib3
Installing dependency: certifi[('>=', '2017.4.17')] (required by: requests)
Querying PyPI ...
Downloading package ...
Opening: https://files.pythonhosted.org/packages/11/dd/e015f3780f42dd9af62cf0107b44ea1298926627ecd70c17b0e484e95bcd/certifi-2022.5.18.1-py3-none-any.whl
Save as: /private/var/mobile/Containers/Data/Application/A2523AAF-82EC-4BCD-B197-85DEBFB5F1DD/tmp/certifi-2022.5.18.1-py3-none-any.whl (155170 bytes)
[====================] 100.00% | 151.5KiB
Installing wheel: certifi-2022.5.18.1-py3-none-any.whl...
Package installed: certifi
Installing dependency: charset-normalizer[('~=', '2.0.0')] (required by: requests)
Querying PyPI ...
Downloading package ...
Opening: https://files.pythonhosted.org/packages/06/b3/24afc8868eba069a7f03650ac750a778862dc34941a4bebeb58706715726/charset_normalizer-2.0.12-py3-none-any.whl
Save as: /private/var/mobile/Containers/Data/Application/A2523AAF-82EC-4BCD-B197-85DEBFB5F1DD/tmp/charset_normalizer-2.0.12-py3-none-any.whl (39623 bytes)
[====================] 100.00% | 38.7KiB
Installing wheel: charset_normalizer-2.0.12-py3-none-any.whl...
Package installed: charset-normalizer
Installing dependency: idna[('<', '4'), ('>=', '2.5')] (required by: requests)
Querying PyPI ...
Downloading package ...
Opening: https://files.pythonhosted.org/packages/04/a2/d918dcd22354d8958fe113e1a3630137e0fc8b44859ade3063982eacd2a4/idna-3.3-py3-none-any.whl
Save as: /private/var/mobile/Containers/Data/Application/A2523AAF-82EC-4BCD-B197-85DEBFB5F1DD/tmp/idna-3.3-py3-none-any.whl (61160 bytes)
[====================] 100.00% | 59.7KiB
Installing wheel: idna-3.3-py3-none-any.whl...
Package installed: idna
Installing dependency: win-inet-pton (required by: requests)
Querying PyPI ...
Downloading package ...
Opening: https://files.pythonhosted.org/packages/be/31/ff772a44aa56319df8afbb0b34f1a856f66f05b9d5f1fed917849e47fdae/win_inet_pton-1.1.0-py2.py3-none-any.whl
Save as: /private/var/mobile/Containers/Data/Application/A2523AAF-82EC-4BCD-B197-85DEBFB5F1DD/tmp/win_inet_pton-1.1.0-py2.py3-none-any.whl (4848 bytes)
[====================] 100.00% | 4.7KiB
Installing wheel: win_inet_pton-1.1.0-py2.py3-none-any.whl...
Package installed: win-inet-pton
[~/Documents]$