目的
迁移项目包路径到服务器上
查看服务器包是否和本地已有项目python版本相同然后发现~嗯不一样
项目上包时用的3.8~
服务器用的2.7
查看方法:
bash
python -version
解决方案
一:项目所有包重新下载
二:升级服务器python版本
第二种步骤:
a. 更新包
bash
sudo apt update
成功报错;
这个是啥额》简单说就是你机器没安装git
liunx 服务器安装git
如何安装:
Linux系统分为两种:
-
RedHat系列,包含Redhat、Centos、Fedora等
RedHat系列的包管理工具是yum,
-
Debian系列,包含Debian、Ubuntu等
Debian系列的包管理工具是apt-get
怎么知道自己什么系列:
查看:
bash
cat /proc/version
接下来继续升级
bash
sudo apt update
sudo apt install python3.8.0
sudo apt install python3.8.0-venv python3.8.0-dev
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8.0
python3 --version