Install ptvsd by default (#217)

* builder: Install ptvsd by default

* builder: Add ptvsd version check
This commit is contained in:
Alexey Rogachevskiy
2020-02-17 21:54:20 +03:00
committed by GitHub
parent d6f8f4017f
commit 7cc91b2e32
2 changed files with 8 additions and 0 deletions

View File

@@ -153,6 +153,10 @@ cp -R node-v10.15.0-linux-armv6l/* /usr/local/
rm -rf node-v10.15.0-linux-armv6l/
rm node-v10.15.0-linux-armv6l.tar.gz
echo_stamp "Installing ptvsd"
my_travis_retry pip install ptvsd
my_travis_retry pip3 install ptvsd
echo_stamp "Add .vimrc"
cat << EOF > /home/pi/.vimrc
set mouse-=a

View File

@@ -12,6 +12,10 @@ python3 --version
ipython --version
ipython3 --version
# ptvsd does not have a stand-alone binary
python -m ptvsd --version
python3 -m ptvsd --version
node -v
npm -v