Python3 and pip
wordpress meta
title: 'Python3 and pip'
date: '2018-02-14T14:34:17-06:00'
status: publish
permalink: /python3-and-pip
author: admin
excerpt: ''
type: post
id: 1182
category:
- OCI
- Python
tag: []
post_format: []
title: 'Python3 and pip'
date: '2018-02-14T14:34:17-06:00'
status: publish
permalink: /python3-and-pip
author: admin
excerpt: ''
type: post
id: 1182
category:
- OCI
- Python
tag: []
post_format: []
I am converting some scripts to python3 and noticed the pip modules in use for python2 need to be added for python3. I am not using virtualenv so below is my fix on Ubuntu 17.10.
Missing module oci.
$ python3 OCI_Details.py -t ocid1.tenancy.oc1..aa...mn55ca
Traceback (most recent call last):
File "OCI_Details.py", line 14, in <module>
import oci,optparse,os
ModuleNotFoundError: No module named 'oci'
Python2 module is there.
$ pip list --format=columns | grep oci
oci 1.3.14
Ubuntu has python3-pip
$ sudo apt install python3-pip
$ pip3 install oci
$ pip3 list --format=columns | grep oci
oci 1.3.14
Check my converted script.
$ python3 OCI_Details.py -t ocid1.tenancy.oc1..aaaaaa...5ca
OCI Details: 0.9.7
..