The method of working an unfinished Miscellaneous 0528 RPM Ubuntu system installation package format

Dependent files generated
pip freeze> requirements.txt
dependencies mounted
pip install -r requirement.txt

 

pip install django-filter # s not a new version is installed behind 

 

The method of mounting the package format RPM system Ubuntu

$ Sudo apt-get install alien ## alien not installed by default, so we must first install it

$ Sudo alien xxxx.rpm ## rpm will be converted to deb, after completion will generate a xxxx.deb

$ Sudo dpkg -i xxxx.deb ## xxxx such software can be installed complete

Note that with alien conversion deb package does not guarantee completely smooth installation, so if you can find a deb package, or a deb package as well.

 

$ Sudo apt-get install alien ## alien not installed by default, so we must first install it

$ Sudo alien xxxx.rpm ## rpm will be converted to deb, after completion will generate a xxxx.deb

$ Sudo dpkg -i xxxx.deb ## xxxx such software can be installed complete

Note that with alien conversion deb package does not guarantee completely smooth installation, so if you can find a deb package, or a deb package as well.

Guess you like

Origin www.cnblogs.com/liuliu-hai/p/10939251.html