Skip to content

Commit f27dc47

Browse files
committed
[Mod] change default pypi_index used
1 parent 61517bf commit f27dc47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

install.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
SET python=%1
33
SET pypi_index=%2
44
IF %python%"" == "" SET python=python
5-
IF %pypi_index%"" == "" SET pypi_index=https://pypi.douban.com/simple
5+
IF %pypi_index%"" == "" SET pypi_index=https://pypi.vnpy.com
66
IF NOT %pypi_index%"" == "" SET pypi_index=--index-url %pypi_index%
77
@ECHO ON
88

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ shift 2
66

77

88
[[ -z $python ]] && python=python3
9-
[[ -z $pypi_index ]] && pypi_index=https://pypi.douban.com/simple
9+
[[ -z $pypi_index ]] && pypi_index=https://pypi.vnpy.com
1010

1111
$python -m pip install --upgrade pip wheel --index $pypi_index
1212

install_osx.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pypi_index=$2
55
shift 2
66

77
[[ -z $python ]] && python=python3
8-
[[ -z $pypi_index ]] && pypi_index=https://pypi.douban.com/simple
8+
[[ -z $pypi_index ]] && pypi_index=https://pypi.vnpy.com
99

1010
$python -m pip install --upgrade pip wheel --index $pypi_index
1111

0 commit comments

Comments
 (0)