Python pip easy_install源配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python pip easy_install源配置相关的知识,希望对你有一定的参考价值。
自己搭建类似pypi源的服务器
先安装httpd
使用httpd监控python库目录simple
在网页能打开服务器ip:port能看到python库文件
ip为服务器ip,port为httpd监控python目录的端口
pip
~/.pip/pip.conf --linux
%HOMEPATH%\pip\pip.ini --window
[global] index-url = http://ip:port/simple
trusted-host=ip
easy_install
~/.pydistutils.cfg --linux
%HOMEPATH%\pydistutils.cfg --window
[easy_install] index_url = http://ip:port/simple
临时配置
easy_install -i http://ip:port/simple fabric
pip -i http://ip:port/simple fabric
以上是关于Python pip easy_install源配置的主要内容,如果未能解决你的问题,请参考以下文章