Update the Package Index: The APT package index is essentially a database of available packages from the repositories defined in the/etc/apt/sources.list file and in the /etc/apt/sources.list.d directory. To update the local package index with the latest changes made in the repositories, type the following:
sudo apt-get update
-
Upgrade Packages: Over time, updated versions of packages currently installed on your computer may become available from the package repositories (for example security updates). To upgrade your system, first update your package index as outlined above, and then type:
sudo apt-get upgrade
Install python
sudo apt-get install python3
Check python version python --version
FTP Server
sudo apt-get install vsftpd
sudo nano /etc/vsftpd.conf
anonymous_enable=NO
Python Virtualenv
apt-get install python-virtualenv
No comments:
Post a Comment