Unable to install/run Python 3.6.x and 3.7.x with MacOS Big Sur [closed] - python-3.6

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
-I upgraded my mac os to latest MacOS Big Sur, after the update my application which previously used to run with python 3.6.x/3.7.x are now not opening/running
Python version 3.9 or higher are running fine.Is any way to run python3.6 or 3.7 in MacOS BigSur?

I ran into a similar issue with Python 3.6 after upgrading to Big Sur.
I went to https://www.python.org/downloads/ and downloaded version 3.9.0.
I then had to re-install some of my python packages e.g numpy too with the new Python version and things seem to be working again for me.

Related

Why would R's tensorflow::install_tensorflow() command attempt to install python3.7 into the r-reticulate conda environment? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
Simple question:
I'm on a Macbook Pro, Big Sur, R 4.1.0, following the documentation on installing tensorflow, and the install_tensorflow(method="conda",conda="~/opt/anaconda3/envs/r-reticulate/"), after telling me that I've now got a thousand conflicts, gives me the final error message:
Error: installation of 'python=3.7' into environment '/Users/me/opt/anaconda3/envs/r-reticulate' failed [error code 1]
Nothing in the documentation says that python 3.7 is a requirement, and as someone who is new to python, why in the world would the install_tensorflow() command try to install a new version of python AFTER it installs all of these required python modules?
The install_tensorflow() function has an argument where you have to tell it the version of conda you're using... not sure why, but it worked after adding this:
install_tensorflow(method = "conda", conda = "~/opt/anaconda3/envs/r-reticulate/", conda_python_version = "3.9")

BAS installation and bayes.outlier function question [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I’m trying to install the R library BAS, but I get the error message:
ERROR: compilation failed for package ‘BAS’
It’s using binary 1.4.7 and source 1.5.1. And library(BAS) works - no error message. But I can’t use the function Bayes.outlier, even after I install the BAS package.
Is the package not really installed? Why is the function call not working?
I already have MASS installed.

I am unable to download the reshape2 package in R [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
I am getting this response when trying to install the R package:
>installed.packages("reshape2")
Package LibPath Version Priority Depends Imports LinkingTo Suggests Enhances
License License_is_FOSS License_restricts_use OS_type Archs MD5sum
NeedsCompilation Built
R version 3.2.2 (2015-08-14)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 8 x64 (build 9200)
The function you have called is not used to download packages.
installed.packages returns information about packages available to R. The first argument defines places where the function will be looking for packages. Unless there is reshape2 directory in your current working directory that happens to contain some valid packages, the function will return nothing.
If you want to download and install package, use install.packages:
install.packages("reshape2")
If you want to download package (but not install it), use download.packages.

How to rollback to R 2.12.1 version on Ubuntu? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I was using R 2.12.1 on my desktop and recently the R got updated to the new version R 2.13.0 which is not I want. Is there anyway to use the R 2.12.1 again and how can I use that?
packages.ubuntu.com seems to have R 2.11.2 for maverick, so that is no help. You may try to see if the Michael's PPA site on launchpad has a rollback feature so that you can get that version there. (Edit: Doesn't seem so. Hmpf.)
Barring that, I would grab the Debian source for 2.12.2 (using the snapshot.debian.org site which has all previous Debian version of r-base and build replacement .deb binaries from that.
Or ... can't you upgrade BioC to a version that works with R 2.13.0? Didn't BioC just have a release too?
Lastly, by far the easiest is to
uncomment the entry for CRAN in /etc/apt/sources.list
update, and
install the most recent Ubuntu version, which is 2.11.2 as shown above.
Ubuntu's next release will get presumably 2.12.* too, so you could also try upgrading to Ubuntu 11.4 now (but note that it is not yet released).
If it was a recent update, it's likely still on your system:
/var/cache/apt/archives

Install MinGW for SUSE Linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Where do I get a link to install Qt with the MinGW cross compiler in Linux?
All you need is just three commands from you:
zypper ar http://download.opensuse.org/repositories/windows:/mingw:/win32/openSUSE_11.3/ mingw
zypper mr -r mingw # this makes the repository auto-refresh on next zypper operations
zypper install mingw32-libqt4-devel
change 11.3 to to the openSUSE version you have.
The dependencies for .exe compiled through that toolchain can be resolved by fetching .dll files from /usr/i686-pc-mingw32/sys-root/i686-pc-mingw32/bin/ directory.
Have a look at:
Building a Cross compiler for Windows on Linux
MinGW cross compiler for Linux build environment
Fedora 11 comes with the MinGW cross compiler (mingw32-gcc, mingw32-g++, etc.) and Win32 packages for Qt (mingw32-qt). You could try using Fedora instead of SUSE, or the packages may install on SUSE with a bit of coaxing.
There is no link. MinGW (Minimalist GNU for Windows) is platform specific and Windows-only. On SUSE, the required compiler GCC and all its dependencies should already be present, so MinGW is unneccessary there.
For Qt for Linux, head over to the Trolltech Download page.

Resources