Top "Python-3.6" questions

Version of the Python programming language released in December 2016.

Installing Python3.6 alongside Python3.7 on Mac

I'm trying to install tensorflow onto a Mac with Python3.7. However, I'm getting the error: $ pip3 -v install tensorflow ... Skipping …

macos tensorflow python-3.6 python-3.7
How to use virtualenv with python3.6 on ubuntu 16.04?

I'm using Ubuntu 16.04, which comes with Python 2.7 and Python 3.5. I've installed Python 3.6 on it and symlink python3 to python3.6 through …

python ubuntu virtualenv python-3.6 virtual-environment
conda install python=3.6 UnsatisfiableError

I currently have Python 3.5.2 installed via Anaconda Continuum. I'm trying to upgrade to Python 3.6 but I'm getting the below error …

python anaconda conda python-3.6
Python 3.6 No module named pip

I have just installed Python 3.6 on Fedora 25 (64 bits) by running dnf install python36 and I can't use any modules Python 3.5 …

python pip python-3.6 fedora
ModuleNotFoundError: No module named 'distutils.core'

I've recently upgraded from Ubuntu 18.04 to 19.04 which has python 3.7. But I work on many projects using Python 3.6. Now when I …

python pycharm virtualenv python-3.6
Python3.6 AttributeError: module 'asyncio' has no attribute 'run'

I tried to read https://hackernoon.com/asynchronous-python-45df84b82434. It's about asynchronous python and I tried the code from …

python python-3.6 python-asyncio
How to connect to a remote PostgreSQL database through SSL with Python

I want to connect to a remote PostgreSQL database through Python to do some basic data analysis. This database requires …

python postgresql python-2.7 ssl python-3.6
What are variable annotations in Python 3.6?

Python 3.6 is about to be released. PEP 494 -- Python 3.6 Release Schedule mentions the end of December, so I went through …

python python-3.x annotations type-hinting python-3.6
Microsoft Windows Python-3.6 PyCrypto installation error

pip install pycrypto works fine with python3.5.2 but fails wiht python3.6 with the following error: inttypes.h(26): error C2061: syntax …

windows visual-studio pycrypto python-3.6
How to escape f-strings in python 3.6?

I have a string in which I would like curly-brackets, but also take advantage of the f-strings feature. Is there …

python python-3.6 f-string