소스 검색

Update Python3 pip Commands

Update the pip3 commands to instead use the safer "python3 -m pip"
method as some distros do not install pip3 as part of the python3-pip
install (but calling the pip module using python3 is almost a
guaranteed).
pull/120/head
Justin Karimi 3 년 전
부모
커밋
91df709f6d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      install.sh

+ 2
- 2
install.sh 파일 보기

@@ -78,7 +78,7 @@ else
sudo apt install -yq libgfortran5
fi

sudo pip3 install numpy ephem tweepy Pillow
sudo python3 -m pip install numpy ephem tweepy Pillow
log_done "Packages installed"

### Create the database schema
@@ -233,7 +233,7 @@ else
cd /tmp
unzip master.zip
cd pd120_decoder-master/pd120_decoder/
pip3 install --user -r requirements.txt
python3 -m pip install --user -r requirements.txt
cp demod.py utils.py "$HOME/raspberry-noaa/"
)
log_done "pd120_decoder installed"


불러오는 중...
취소
저장