Skip to content

Commit ebc7614

Browse files
committed
Fixed bug in install that causes virtual environmant to break.
Changes to be committed: modified: install
1 parent 04b7007 commit ebc7614

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

install

+3-4
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,13 @@ for d in Base Base/Library Data Extras Logs Ledger ; do
3838
done
3939

4040
if [ x$1 != 'xnopull' ] ; then
41-
python3 -m pip install --upgrade pip --break-system-packages
41+
python3 -m pip install --upgrade pip
4242

4343
for i in `cat requirements.txt` ; do
44-
# --break-system-packages
45-
$pip3 install -U $i --break-system-packages
44+
$pip3 install -U $i
4645
done
4746

48-
for i in $BaseDir/Data/*.symbolmap ; do
47+
for i in $BaseDir/Data/*.symbolmap ; do
4948
N=`echo $i | cut -d/ -f5 | cut -d. -f1`
5049
A=`echo $i | cut -d/ -f5 | cut -d. -f2`
5150
$BaseDir/Extras/TV2Exchange $N $A

0 commit comments

Comments
 (0)