Post History
The usual way is to specify an installation location with ./configure --prefix="$HOME/python" ... and then make install after make. If you don't specify a --prefix argument to configure, it ty...
Answer
#2: Post edited
- The usual way is to specify an installation location with
- ```
./configure --prefix=$HOME/python- ```
- ... and then `make install` after `make`.
- If you don't specify a `--prefix` argument to `configure`, it typically defaults to `/usr/local` (so `make install` will install `python` as `/usr/local/bin/python` which should already be on your `PATH`, and libraries somewhere like `/usr/local/lib/python/3.11`).
- The usual way is to specify an installation location with
- ```
- ./configure --prefix="$HOME/python"
- ```
- ... and then `make install` after `make`.
- If you don't specify a `--prefix` argument to `configure`, it typically defaults to `/usr/local` (so `make install` will install `python` as `/usr/local/bin/python` which should already be on your `PATH`, and libraries somewhere like `/usr/local/lib/python/3.11`).
#1: Initial revision
The usual way is to specify an installation location with ``` ./configure --prefix=$HOME/python ``` ... and then `make install` after `make`. If you don't specify a `--prefix` argument to `configure`, it typically defaults to `/usr/local` (so `make install` will install `python` as `/usr/local/bin/python` which should already be on your `PATH`, and libraries somewhere like `/usr/local/lib/python/3.11`).