
python - How do I solve "error: externally-managed-environment" …
Mar 2, 2023 · On Debian systems and Debian-based systems such as Ubuntu, you can install pipx using apt, and then use pipx to install the application: apt install pipx pipx install some-python-application For libraries, i.e., when you will use the code primarily by importing it in your own projects. Typically, you should create a virtual environment yourself.
How to get setuptools and easy_install? - Stack Overflow
Dec 28, 2011 · Although the command-line wrapper script for easy_install disappeared, the code is still part of Setuptools, and even actively maintained despite being deprecated. (The documentation only covers direct command-line use; but based on the structure of the code, it seems like invocations along the lines of setup.py easy_install . might do ...
linux - How to install valgrind properly? - Stack Overflow
Apr 3, 2021 · When trying to install Valgrind in Ubuntu 20.04, you can use apt or snap (notice the version number)::~/valgrind-3.18.1$ valgrind. Command 'valgrind' not found, but can be installed with: sudo snap install valgrind # version 3.18.1, or sudo apt install valgrind # …
java - How to install JDK 11 under Ubuntu? - Stack Overflow
Sep 26, 2018 · Does anybody know how to install it (OpenJDK from Oracle) from the command line? I would like to see something like it was before for Oracle Java 10: sudo add-apt-repository ppa:linuxuprising/java sudo apt-get update sudo apt-get install oracle-java10-installer P. S. In the similar question proposed instruction: sudo apt-get install openjdk-11-jdk
ubuntu - What is makeinfo, and how do I get it? - Stack Overflow
Aug 30, 2019 · In (at least) Ubuntu when using bash, it tells you what package you need to install if you type in a command and its not found in your path. My terminal says you need to install 'texinfo' package. sudo apt-get install texinfo
software installation - Using a file to install packages with apt-get ...
Jan 19, 2015 · As specified in the comments of your question, you can write a simple text file, listing the packages to install: iceweasel terminator vim Assuming this is stored in packages.txt, then run the following command: xargs sudo apt-get -y install < packages.txt xargs is used to pass the package names from the packages.txt file to the command line.
How do I install the yaml package for Python? - Stack Overflow
Jan 10, 2013 · Now you know a specific package name, you can install it: $ pip install pyyaml If you want to install python yaml system-wide in linux, you can also use a package manager, like aptitude or yum: $ sudo apt-get install python-yaml $ sudo yum install python-yaml
How to install Boost on Ubuntu - Stack Overflow
Sep 3, 2018 · Install libboost-all-dev by entering the following commands in the terminal. Step 1. Update package repositories and get latest package information. sudo apt update -y Step 2. Install the packages and dependencies with -y flag . sudo apt install -y libboost-all-dev
How to install a specific version of Node on Ubuntu/Debian?
Jun 3, 2013 · I would like to install NodeJS version 0.8.18 on Ubuntu 12.04. I tried to install the newest version and then reverting to 0.8.18 by using nvm, but when I run my code apparently there is some problem
How do I install the OpenSSL libraries on Ubuntu?
Feb 2, 2017 · Try typing sudo apt-get install libssl and then hit tab to see a list of matching package names (which can help when you need to select the correct version of a package that has multiple versions or other variations available).