hoot upgrade to the pre-release package of mxnet - pip

I want to upgrade to the pre-release package of mxnet pre. Can i do this through pip?
I tried pip with --pre --upgrade. This installed the latest official release. Is there a way where I can upgrade to the pre-release version. i am using mac os

we did not publish the release candidate. You will have to build that from source yourself.

You can try pip install mxnet -U --pre

Related

module mxnet has no attribute nd

I am trying to use gluonts library. I installed gluonts 0.12.2 and when I try to import gluonts it says 'module mxnet has no attribute nd'. mxnet was installed by dependence with version 1.6.0. I am using macos, m1 pro. how can I solve this problem?
I tried to install mxnet from github repo and without dependence install, tried to install from pip with "pip install -U mxnet". they did not work.

How to install a specific version of python package

Goal install older package:
pypdf2==1.26.0
reportlab==3.3.0
Is it possible to install these on MacOS BigSur with the terminal command: pip3? The pip syntax is:
pip install <PACKAGE>==<VERSION>
Is there a simple test to determine if said version of the packages are compatible with my version of python3?
I have the latest version of the packages installed and now wonder if two versions can coexist and play nicely.

why poetry is failing at installing a freshly released pypi package?

I want to install the freshly released version 2.4.0 of datasets (https://pypi.org/project/datasets/2.4.0/).
With pip, it works:
$ pip install datasets==2.4.0
With poetry, it fails:
$ poetry add datasets==2.4.0
ValueError
Could not find a matching version of package datasets
Poetry uses PyPi's JSON Api to retrieve necessary metadata. They had some problem yesterday, which is fixed in the meantime. See https://github.com/pypi/warehouse/issues/11949

Not able to install go 1.13 in go env. goenv install 1.13.6 fails with - go-build: definition not found: 1.13.6

I am trying to install different Go versions for various projects
1. goenv install 1.11.4 was successful
2. go env install 1.13.6 failed with error - go-build: definition not found: 1.13.6
also when i checked available versions for goenv using
goenv install --list
The last one I got is
.......
.......
1.10.3
1.10.4
1.10.5
1.10.6
1.10.7
1.11.0
1.11beta2
1.11beta3
1.11rc1
1.11rc2
1.11.1
1.11.2
1.11.3
1.11.4
1.12beta1
Go is available till 1.14 now
Why all the versions of Go are not available to install in goenv
Try uninstalling goenv and then reinstalling it with --HEAD. For OSX, it would look like:
brew uninstall goenv
brew install --HEAD goenv
If that doesn't work, try running the same set of commands once more. Since the new version is still in beta, goenv uses the previous version (without 1.14.x) as its default.

Update Software Version in Anaconda

I have installed python and many other useful tools on my Ubuntu 14.04 using Anaconda. I installed pysam (htslib interface for python) using
conda install pysam
However this installs the old version (0.6). The current version is 0.8.4. How can I install that version using conda. I don't want to use pip install pysam because I read somewhere it might cause problems.
Thanks.
Anaconda only provides version 0.6. You can install from binstar with:
conda install -c https://conda.anaconda.org/uhlitz pysam
This should give you version 0.8.3 for linux64. Other channels are also available.

Resources