Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why so complicated?
#3
It's can be difficult to start,there is a lot of stuff that's is unfamiliar.
Here my tutorial of basic usage of Python 3 on Windows and Linux.
Windows Part-1, Part-2
Linux Part-1

(Jan-27-2018, 10:06 PM)vulpesVelox Wrote: I've learned that I'm not to sudo pip install on the Fedora platform as it will create clutter
Advice follow tutorial in link about pyenv,for Fedora
Example:
mint@mint ~ $ pyenv install 3.6.2
Downloading Python-3.6.2.tar.xz...
-> https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tar.xz
Installing Python-3.6.2...
Installed Python-3.6.2 to /home/mint/.pyenv/versions/3.6.2
  
# Make python and pip default to 3.6.2 or what version want to use
mint@mint ~ $ pyenv global 3.6.2
 
mint@mint ~ $ python
Python 3.6.2 (default, Jul 20 2017, 14:21:59) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
Now will pip install something always work and installing to 3.6.2,no need for sudo.
Switching back to OS default is easy to,as pyenv is safe to use it do not mess with system Python.
mint@mint ~ $ pyenv local system
mint@mint ~ $ python
Python 2.7.12 (default, Nov 19 2016, 06:48:10) 
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 
mint@mint ~ $ python3
Python 3.5.2 (default, Nov 17 2016, 17:05:23) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
Reply


Messages In This Thread
Why so complicated? - by vulpesVelox - Jan-27-2018, 10:06 PM
RE: Why so complicated? - by wavic - Jan-27-2018, 10:26 PM
RE: Why so complicated? - by vulpesVelox - Jan-28-2018, 12:14 AM
RE: Why so complicated? - by snippsat - Jan-27-2018, 10:52 PM
RE: Why so complicated? - by Gribouillis - Jan-27-2018, 11:33 PM
RE: Why so complicated? - by league55 - Jan-28-2018, 01:11 AM
RE: Why so complicated? - by wavic - Jan-28-2018, 01:37 AM
RE: Why so complicated? - by vulpesVelox - Jan-28-2018, 10:59 AM
RE: Why so complicated? - by league55 - Jan-28-2018, 11:14 AM
RE: Why so complicated? - by Gribouillis - Jan-28-2018, 05:37 AM
RE: Why so complicated? - by league55 - Jan-28-2018, 08:28 AM
RE: Why so complicated? - by Gribouillis - Jan-28-2018, 08:44 AM
RE: Why so complicated? - by snippsat - Jan-28-2018, 01:35 PM
RE: Why so complicated? - by vulpesVelox - Jan-28-2018, 07:15 PM
RE: Why so complicated? - by wavic - Jan-28-2018, 09:21 PM
RE: Why so complicated? - by vulpesVelox - Jan-30-2018, 01:51 PM
RE: Why so complicated? - by snippsat - Jan-30-2018, 06:52 PM
RE: Why so complicated? - by nelsonkane - Jan-31-2018, 02:40 AM
RE: Why so complicated? - by vulpesVelox - Jan-31-2018, 11:16 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020