Python Forum

Full Version: Need help for beginning coding
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Are you sure that you have downloaded Community Edition (= free) and not the Professional one(= paid)? I have just tried to download community one, extracted it, run with pycharm-community-2017.1/bin/pycharm.sh and it just started and there was nothing about licence activation, or email...

I would definitely not pay for an IDE that I had not chance to try.
With PyCharm License Activation, I registered myself , I asked for a new password. It seems to me I am in an ocean. So now PyCharm non available. Since terminal says python is inside my software, I should like to work with my vim, as I did with C++. But I always I don't know how ! !
Quote:sylvain@sylvain-HP-Mini-110-1100:~$ 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.
>>>
That is what I have. But how do I work with it ?
As a new user you should start with python 3.
Ubuntu 16.04 comes by default with Python 3.5.1 installed.
You start it by python3 in terminal.
pip is very important for Python,
you may need to install pip for Python 3 sudo apt-get install python3-pip
Now you can test that it work:
$ 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.
>>> exit()

$ pip -V
pip 9.0.1 from /usr/local/lib/python3.5/dist-packages (python 3.5)

# Test Install
$ pip install requests
Collecting requests
  Downloading requests-2.13.0-py2.py3-none-any.whl (584kB)
    100% |████████████████████████████████| 593kB 945kB/s 
Installing collected packages: requests
Successfully installed requests-2.13.0
You point PyCharm or other editors to point to 3.5.
As mention you most download Community Edition(Free).
At last, evert thing seems OK. PaCharm and python3. About 20 hours for all that ! Many thanks to all persons that helped me. Sylas
Pages: 1 2