ID = linux_ask_03
How to install tar.gz file in Linux?
$ ./configure + $ make + $ make install
Follow this procedure to make it:
To extract it, execute the command:$ tar -xf <filename.tar.gz>
$ tar -xf pycharm-community-2020.1.2.tar.gz Getting no info. means it is done successfully.
Where,
./configure will configure the software to ensure your system has the necessary functionality and libraries to successfully compile the packagemake will compile all the source files into executable binaries.Finally, make install will install the binaries and any supporting files into the appropriate locations.I tried to install pycharm, but got failed.
~/Downloads/pycharm-community-2020.1.2$ ./configure bash: ./configure: No such file or directory ~/Downloads/pycharm-community-2020.1.2$ make make: *** No targets specified and no makefile found. Stop. ~/Downloads/pycharm-community-2020.1.2$ sudo make install make: *** No rule to make target 'install'. Stop.And my recommendation is to follow the installation instruction which is usually inside the extracted folder, similar to README.
In conclusion, the more practical procedure is: Step1: extract the file Step2: follow the installation instruction
This is my record of installing pycharm after got failed based on common solution.
Then, open Install-Linux-tar.txt and go to next step.
guide:
To start the application, open a console, cd into “{installation home}/bin” and type: ./pycharm.sh This will initialize various configuration files in the configuration directory: ~/.config/JetBrains/PyCharmCE2020.1.record:
$ cd bin $ ./pycharm.sh OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. ...The installation was done.
[1] 如何使用sudo命令安装.tar.gz? [2] How to install Linux / UNIX *.tar.gz tarball files
