Answers for "where to specific version of packages in python project"

0

install package on specific version of python

py -3.7 -m pip install opencv-python
Posted by: Guest on October-06-2021
0

import specific version of package python

# adapted from answer given by Stack Overflow user in the source link

import pkg_resources
pkg_resources.require("your_package==its_version")
import your_package
Posted by: Guest on July-02-2021

Code answers related to "where to specific version of packages in python project"

Python Answers by Framework

Browse Popular Code Answers by Language