How to install Tensorflow-Federated 0.28.0 on win10? - python-3.x

I need some function or api which belongs to the newest version of Tensorflow Federated. According to the tutorial of official website, I type the following to install the newest version.
pip install --upgrade pip
pip install --upgrade tensorflow-federated
Unfortunately, when the installation has been finished, the version is 0.17.0, which was published in 2020. Therefore, I just want to know how to install Tensorflow-Federated 0.28.0 on win10.

I have moved to Linux System, and everything is ok now. The win 10 platform can't download the newest version.

Related

How do you check currently downloaded version and download latest version of SymPy?

I am currently using a windows computer and installed SymPy with pip install SymPy.
You can use pip list to show the names and versions of all currently installed packages. pip list --outdated will also show outdated packages including their version and the latest version available. To upgrade to the latest version of a package, use pip install --upgrade <package name>. To get more information on pip and the available commands view the pip documentation.

WARNING: pyjwt 1.1.0 does not provide the extra 'crypto'

I am getting the error
WARNING: pyjwt 1.1.0 does not provide the extra 'crypto'
for Docker command
RUN pip install --no-cache /wheels/*
while installing PyJWT==1.7.1, Is there any solution to fix this warning?
PyJWT 1.7.1 was released at Dec 7, 2018.
Extra crypto was added to PyJWT on Oct 22, 2019 hence it's available in PyJWT 2.0+.
To use pyjwt[crypto] you need to install later version. Currently the latest is PyJWT 2.0.1.
You can install pyjwt with the cryptographic Dependency with:
pip install pyjwt[crypto]
As seen in pyjwt's documentation
You can also separately install the required library with as seen on pyca/cryptography's documentation:
pip install cryptography
In order to fix the following warning
WARNING: You are using pip version 20.1.1; however, version 21.0 is
available. You should consider upgrading via the
'/usr/local/bin/python -m pip install --upgrade pip' command.
I added the following code to Dockerfile
# upgrade pip
RUN pip install --upgrade pip
I just reverted adding this and it now works correctly, although I still have the pip version warning.

Why is an older version of sktime getting installed using pip?

I'm trying to install sktime using pip. The latest version in pypi is 0.5.1, however when I install 0.4.3 gets installed. I tried installing using pip3 install sktime==0.5.1, it throws error
Could not find a version that satisfies the requirement sktime==0.5 (from versions: 0.1.dev0, 0.1.0, 0.2.0, 0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3)
No matching distribution found for sktime==0.5
For future users, relevant details from chat:
Ubuntu 18.0.4
pip 9.0.1
python 3.6.9
The issue here is that the pip version is too old to install any of the wheel files for 0.5.1. manylinux2010 support was added in pip 19.0, according to this issue. To fix this, just upgrade pip to a version >19.
So why does this issue only occur for version 0.5.1 and not any of the previous ones? It's because all of the previous version(for instance, 0.4.3) also provide a source distribution(the .tar.gz) which can be used to build from source as an alternative to wheels. However, this sdist was removed in 0.5.1.

Unable to install robotframework-ride in ubuntu

I am trying to install robotframwrok-ride in ubuntu18.04 but getting "could not find a version satisfies the requirement Pywin32" error.
please help me to get the ride installed.
That problem is fixed in the next release, which is 1.7.4.
You can install the Beta version by following the instructions in the release notes, https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-1.7.4.rst
You can also install the current development version, which includes more fixes.
pip install -U https://github.com/robotframework/RIDE/archive/master.zip
(edit)
The version 1.7.4 has been released on December the 24th, 2019.
You can install (after having installed wxPython) with:
sudo pip install robotframework-ride

opencv_python-3.4.2+contrib-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform

while trying to install the wheel file I'm getting the not a supported wheel on this platform and also updated pip
opencv_python-3.4.2+contrib-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform
try this
pip install opencv-contrib-python
This will install it via pip. And it is way easier to do.
I am running python 3.5 for this inside anaconda. Install with no issues.
Please note you can only have one version installed at a time on each environment.

Resources