Install old version of scrapyd - scrapyd

I tried various way to install old version of scrapyd but not succeed..
sudo pip install scrapyd-0.24.6
sudo apt-get install scrapyd-0.24.6
pls tell me how I can download and install scpecfic version of scrapyd
Thanks

please install python packege
$sudo pip install scrapyd==0.24.6

Related

I couldn't upgrade my raspberry pi python version from 3.7 to 3.9

Please help me.
i have try out alot of way to get install, upgrade my python3.7 to python3.9 yet it keep shows up error.
sudo apt-get install python3
(Python3 is already the newest version [3.7.3-1])
sudo apt-get upgrade python3
(Python3 is already the newest version [3.7.3-1])
sudo add-apt-repository ppa:deadsnakes/ppa
(file "/user/bin/add-apt-repository", line 95, in )
(sp = SoftwareProperties(options=options)
(....)
(Error: could not find a distribution template for Raspbian/buster)
sudo apt-get install build-essential python-dev libsqlite3-dev libreadline6-dev libgdbm-dev zlib1g-dev libbz2-dev sqlite3 zip
(after install 2 newly package)
sudo apt-get install python3 python3-dev
(still back to python3.7)
anyone know how to make it to python3.9?
you have to type this in terminal:
sudo apt install python3.9
but you never can upgrade your Linux python to a newer version. It is internal.
but you can install python3.9 and use virtualenv to use your code in python3.9

Installing last libreoffice by apt-get

How to install the last LibreOffice version by the apt-get command? I ran the followed commands at a Ubuntu 16.04 and just got version 6.2.8.2 but the last official one is 6.4.
sudo apt-add-repository ppa:libreoffice/ppa
sudo apt update
sudo apt upgrade
sudo apt install libreoffice
Second the official developers, LibreOffice-official-version Ubuntu 16.04 should be 5.1.6~rc2-0ubuntu1~xenial10. Because I had manually added sudo apt-add-repository ppa:libreoffice/ppa I was able to got libreoffice 6.2.8.2.
To achieve the 6.4 and newer installation they recommend to download the package or simple use sudo snap install libreoffice.

how to install opengeo-postgis-shapeloader in ubuntu

I installed POSTGIS on Ubuntu but it doesn't have a shape file loader. I looked it up online and people say use sudo apt-get install opengeo-postgis-shapeloader or sudo apt-get install opengeo-postgis2-shapeloader . I tried both and ubuntu said can't locate package opengeo-postgis-shapeloader. How can i install it?
thank you
I think you can follow this http://suite.opengeo.org/4.1/installation/ubuntu/install.html
to install the mentioned packages

how can I upgrade virtualenv?

I installed virtualenv with bootstrapper. here in github
When I run virtualenv --version it shows 1.11.4. But I want to upgrade it to version 1.11.6. I use Linux Mint 17
sudo pip install virtualenv --upgrade

where can i download pymongo in 64bit ubuntu/linux

I need to install pymongo in 64bit ubuntu/linux . but the downloads is there only for windows and mac. and this is a production setup.
can anyone knows where to download.
Here's the short answer (tested on ubuntu 12.10, quantal quetzal, 64-bit):
sudo apt-get install python-pip
sudo apt-get install build-essential python-dev
pip install pymongo
The best way to install Python packages is with pip. If you don't already have pip, please see the instructions on installing it at http://www.pip-installer.org/en/latest/installing.html.
Once you have pip, you can install PyMongo with:
pip install pymongo
which will download the latest version (currently 2.1). PyMongo uses optional C extensions, so for best performance also install the Python headers and the C build chain. On ubuntu, you can do this with:
aptitude install build-essential python-dev
If you do this after you install PyMongo, you should then reinstall it, to make sure the C extensions are built:
pip install -U pymongo
Check out here.
http://www.mongodb.org/display/DOCS/Ubuntu+and+Debian+packages