linux-mint

How to install GCC 4.7.2 on Linux Mint? [closed]

↘锁芯ラ 提交于 2019-12-04 12:19:57
问题 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 7 years ago . I need to install the latest version of GCC on Linux Mint 13. I found some useful terminal commands for Ubuntu 12.04, but it seems that nothing similar for Mint exists on the Internet... Edit: I solved the problem, so, in order to help everybody else, write these commands: sudo add-apt-repository ppa:ubuntu

GIT: Can't Push (Strange Config Issue)

不羁的心 提交于 2019-12-04 10:52:51
问题 I'm on a fresh install of Linux Mint. I'm getting the following error when trying to push from any repository: error: Malformed value for push.default: simple error: Must be one of nothing, matching, tracking or current. fatal: bad config file line 8 in /home/leng/.gitconfig fatal: Could not read from remote repository. This is very odd, because I definitely have a version that supports the simple push behavior. The output of git --version is git version 1.8.3.2 . The contents of ~/.gitconfig

Python Module Error on Linux

馋奶兔 提交于 2019-12-04 08:36:43
问题 I am using python 2.7 on Linux Mint 16. I am facing an error, if I run my IDE (tried it on Spyder and Pycharm) from a program launcher (eg. from the prompt at Alt F2 or an icon shortcut on my desktop) the modules do not load and I get the following error File "/usr/local/lib/python2.7/dist-packages/gurobipy/__init__.py", line 1, in from .gurobipy import * ImportError: libgurobi56.so: cannot open shared object file: No such file or directory However, if I run the program from the command line

Intel Fortran Composer 2011 and Linux Mint 12

喜你入骨 提交于 2019-12-03 22:21:32
I'm using Intel Fortran Composer 2011 on a Linux Mint 12 system. Every time (and for every user) I restart the computer I need to set the environment variables. source /opt/intel/composer_xe_2011_sp1.9.293/bin/compilervars.sh intel64 Is there any way to make it automatic for all users? Sorry my poor english. Thanks, CP Put a file under /etc/profile.d with the following content (e.g name it intel.sh ) #!/bin/sh source /opt/intel/composer_xe_2011_sp1.9.293/bin/compilervars.sh intel64 来源: https://stackoverflow.com/questions/9845724/intel-fortran-composer-2011-and-linux-mint-12

ModuleNotFoundError: No module named 'google_auth_oauthlib'

时光怂恿深爱的人放手 提交于 2019-12-03 21:30:33
问题 I am trying to run the 'generate_refresh_token.py' file in the authentification folder of the AdWords API. But when I do python generate_refresh_token.py as described in the documentation, I get the error ModuleNotFoundError: No module named 'google_auth_oauthlib' . So I try to install the module with pip install google-auth-oauthlib , and here is the output: Requirement already satisfied: google-auth-oauthlib in /home/$USER/anaconda3/lib/python3.6/site-packages (0.2.0) I activate my

problems installing M2Crypto on Mint: follow-up

岁酱吖の 提交于 2019-12-03 16:31:09
I asked a question here regarding installing the M2Crypto python library in Mint. That question was answered successfully and I was able to build and install M2Crypto. However, I am not able to use it within Python. when I attempt to import the module, I get the following error: >>> import M2Crypto Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python2.7/dist-packages/M2Crypto/__init__.py", line 22, in <module> import __m2crypto ImportError: /usr/local/lib/python2.7/dist-packages/M2Crypto/__m2crypto.so: undefined symbol: SSLv2_method If anyone know

ERROR: 'configure' exists but is not executable — see the 'R Installation and Administration Manual' [closed]

会有一股神秘感。 提交于 2019-12-03 09:17:22
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 6 months ago . Ubuntu, Linux Mint, Debian ERROR: 'configure' exists but is not executable -- see the 'R Installation and Administration Manual' Warning in install.packages : installation of package ‘e1071’ had non-zero exit status If you run into the error-code above on Linux here is a simple fix for you: Why

Docker error in Linux mint 17

放肆的年华 提交于 2019-12-03 08:11:02
问题 I have installed docker in Linux Mint 17 Qiana (which is based on Ubuntu 14.04) present in the Oracle VM. If I tries to start, it shows the following error, FATA[0000] Get http:///var/run/docker.sock/v1.18/containers/json: dial unix /var/run/docker.sock: no such file or directory. Are you trying to connect to a TLS-enabled daemon without TLS? I couldn't find any useful information regarding this when I tried googling regarding the same. This stackoverflow question suggesting to restart my

Install python3-venv module on linux mint

做~自己de王妃 提交于 2019-12-03 07:48:28
问题 I was able to move to Linux mint 17.3 64 bit version from my Linux mint 16. This was long awaited migration. After moving to Linux Mint 17.3, I am not able to the install python3-venv module, which is said to be the replacement for virtualenv in python 3.x. In my linux mint 16 I had access to pyvenv-3.4 tool. I dont know when I installed that module in Linux mint 16. Anybody faced this issue ? python -m venv test The virtual environment was not created successfully because ensurepip is not

installed ruby using apt-get install ruby 2.0.0 succeeded but not using correct ruby version

徘徊边缘 提交于 2019-12-03 05:58:46
问题 Hi I am really new to linux. I am currently deploying an app on digital ocean so I am switching to linux ox temporarily. I did sudo apt-get install ruby 2.0.0 and installed correctly but when I do ruby-v I am getting the 1.8.7 version. I am sure that the old version is prepackaged with mint. How do I switch to ruby 2.0.0 in my bash profile or the linux startup files? 回答1: If you're new to linux I'd recommend using something like RVM (Ruby Version Manager) to install ruby. It makes it easier