├── .gitignore ├── installVSCode.sh ├── installVSCodeWithPython.sh ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | script.deb.sh 2 | vscodeInstall.sh 3 | 4 | -------------------------------------------------------------------------------- /installVSCode.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | # Copyright 2020 JetsonHacks 3 | # MIT License 4 | # Install Visual Studio Code 5 | # 6 | 7 | # If you need a specific version of Visual Studio Code, set the version here, e.g. 8 | # 1.85.2 is the latest version of VS Code that runs on Jetson Nano running Ubuntu 18.04 9 | # Newer versions of VS Code require a later version of libc, not available on the Nano 10 | VERSION=1.85.2 11 | wget -N -O vscode-linux-deb.arm64.deb https://update.code.visualstudio.com/$VERSION/linux-deb-arm64/stable 12 | sudo apt install ./vscode-linux-deb.arm64.deb 13 | 14 | -------------------------------------------------------------------------------- /installVSCodeWithPython.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | # Copyright 2020 JetsonHacks 3 | # MIT License 4 | # Install Visual Studio Code with Python support 5 | # 6 | 7 | # If you need a specific version of Visual Studio Code, set the version here, e.g. 8 | # 1.85.2 is the latest version of VS Code that runs on Jetson Nano running Ubuntu 18.04 9 | # Newer versions of VS Code require a later version of libc, not available on the Nano 10 | VERSION=1.85.2 11 | wget -N -O vscode-linux-deb.arm64.deb https://update.code.visualstudio.com/$VERSION/linux-deb-arm64/stable 12 | sudo apt install ./vscode-linux-deb.arm64.deb 13 | 14 | # Install useful Python packages 15 | sudo apt-get install python3-pip -y 16 | # Install a Python linter 17 | pip3 install pylint 18 | # Install a Python formatter 19 | pip3 install black 20 | 21 | # Install the Python extension for Visual Studio Code 22 | # Extension name is ms-python.python 23 | code --install-extension ms-python.python --force 24 | 25 | 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 JetsonHacksNano 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # installVSCode 2 | 3 | Shell scripts to install Microsoft Visual Studio Code on ARM 64 machines (e.g. NVIDIA Jetson Developer Kits). There are two scripts here, one which installs Visual Studio Code and another that installs Visual Studio Code with the Python extension enabled. 4 | 5 |