-2

I am trying to pip install the latest version of scipy (1.11.1)so that I can access the CensoredData function. I've tried everything that I could think of but can't seem to install the package.

If for some reason I remain unable to install this package, the problem that I am facing in my research is trying to fit data that has been logarithmically binned to different models/probability distributions. If anyone knows about other tools/packages for fitting data that has been logarithmically binned to different models that would also be very helpful.

The SciPy website says that 1.11.1 is the most recent version and that it should be available via 'pip install --user scipy' however, that only installs version 1.10.0 which I already have.

I've also tried to install the latest version directly from GitHub but that too seems to fail.

1 Answers1

1

You can do pip install --user --upgrade scipy for the newest version (actually 1.11.2). For a specific version, you can do pip install --user scipy==1.11.1. You will likely be told "Requirement already satisfied" if you just do pip install --user scipy, as it finds that it is already installed.

Ben A.
  • 874
  • 7
  • 23