在Python中,可以使用pip命令的--index-url
或-i
選項來指定安裝源(也稱為索引URL)。這是一個例子:
pip install <package_name> --index-url https://<your_custom_index_url>
或者使用短選項:
pip install <package_name> -i https://<your_custom_index_url>
將<package_name>
替換為您要安裝的軟件包的名稱,將<your_custom_index_url>
替換為您想要使用的自定義源URL。
例如,如果您想要從清華大學的PyPI鏡像源安裝NumPy,您可以使用以下命令:
pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
請注意,自定義源可能需要用戶名和密碼進行身份驗證。在這種情況下,您可以使用--username
和--password
選項提供憑據:
pip install <package_name> --index-url https://<your_custom_index_url> --username <your_username> --password <your_password>
或者使用短選項:
pip install <package_name> -i https://<your_custom_index_url> --username <your_username> --password <your_password>