First commit.

This commit is contained in:
vh
2026-04-04 21:42:15 -07:00
commit 0b413ceebf
89 changed files with 2515 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#networking #python #ai
Today, I had some trouble installing some pip/python packages at my colo hosted by Cogent in Anaheim.
Pip direct installs were very slow.
The problem was solved by running a local proxy on my windows machine (mitmproxy)
The following command lines for PIP were used to make it work:
```python
pip install --proxy http://10.0.10.10:8080 --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org <package_name>
```
When using UV, set environment variables:
set environment variables
```
HTTP_PROXY`
`HTTPS_PROXY`
ALL_PROXY''
```
IE:
> export ALL_PROXY=http://123.123.123.123:8080