How to install lmfit package on Python3 on Windows 10
I try to install lmfit package on my Windows 10 computer. Because I could not install the package by typing: pip install lmfit
I typed: python setup.py install
. Then it shows:
running install
running bdist_egg
running egg_info
writing lmfit.egg-infoPKG-INFO
writing dependency_links to lmfit.egg-infodependency_links.txt
writing requirements to lmfit.egg-inforequires.txt
writing top-level names to lmfit.egg-infotop_level.txt
reading manifest file 'lmfit.egg-infoSOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'README.txt'
warning: no previously-included files found matching '*.pyc'
warning: no previously-included files found matching 'core.*'
warning: no previously-included files found matching '*~'
warning: no previously-included files found matching '*.pdf'
warning: no files found matching '*.dat' under directory 'tests'
warning: no previously-included files matching '*' found under directory 'doc_build'
warning: no previously-included files matching '*.pdf' found under directory 'doc'
writing manifest file 'lmfit.egg-infoSOURCES.txt'
installing library code to buildbdist.win-amd64egg
running install_lib
running build_py
UPDATING buildliblmfit/_version.py
set buildliblmfit/_version.py to '0.9.12'
creating buildbdist.win-amd64egg
creating buildbdist.win-amd64egglmfit
copying buildliblmfitconfidence.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitjsonutils.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitlineshapes.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitminimizer.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitmodel.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitmodels.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitparameter.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitprintfuncs.py -> buildbdist.win-amd64egglmfit
creating buildbdist.win-amd64egglmfitui
copying buildliblmfituibasefitter.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfituiipy_fitter.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfitui__init__.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfit_ampgo.py -> buildbdist.win-amd64egglmfit
copying buildliblmfit_version.py -> buildbdist.win-amd64egglmfit
copying buildliblmfit__init__.py -> buildbdist.win-amd64egglmfit
byte-compiling buildbdist.win-amd64egglmfitconfidence.py to confidence.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitjsonutils.py to jsonutils.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitlineshapes.py to lineshapes.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitminimizer.py to minimizer.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitmodel.py to model.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitmodels.py to models.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitparameter.py to parameter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitprintfuncs.py to printfuncs.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfituibasefitter.py to basefitter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfituiipy_fitter.py to ipy_fitter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitui__init__.py to __init__.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit_ampgo.py to _ampgo.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit_version.py to _version.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit__init__.py to __init__.cpython-37.pyc
creating buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infoPKG-INFO -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infoSOURCES.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infodependency_links.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-inforequires.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infotop_level.txt -> buildbdist.win-amd64eggEGG-INFO
zip_safe flag not set; analyzing archive contents...
creating 'distlmfit-0.9.12-py3.7.egg' and adding 'buildbdist.win-amd64egg' to it
removing 'buildbdist.win-amd64egg' (and everything under it)
Processing lmfit-0.9.12-py3.7.egg
Removing c:usersre090anaconda3libsite-packageslmfit-0.9.12-py3.7.egg
Copying lmfit-0.9.12-py3.7.egg to c:usersre090anaconda3libsite-packages
lmfit 0.9.12 is already the active version in easy-install.pth
Installed c:usersre090anaconda3libsite-packageslmfit-0.9.12-py3.7.egg
Processing dependencies for lmfit==0.9.12
Searching for uncertainties>=3.0
Reading https://pypi.org/simple/uncertainties/
Download error on https://pypi.org/simple/uncertainties/: unknown url type: https -- Some packages may not be found!
Couldn't find index page for 'uncertainties' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.org/simple/
Download error on https://pypi.org/simple/: unknown url type: https -- Some packages may not be found!
No local packages or working download links found for uncertainties>=3.0
error: Could not find suitable distribution for Requirement.parse('uncertainties>=3.0')
This package actually runs well in other Windows 10 computer. But I got this error message on another newer Windows 10 computer. I'm wondering if it is the system's problem, which cannot be easily solved.
Do anybody know how to fix it?
python python-3.x lmfit
add a comment |
I try to install lmfit package on my Windows 10 computer. Because I could not install the package by typing: pip install lmfit
I typed: python setup.py install
. Then it shows:
running install
running bdist_egg
running egg_info
writing lmfit.egg-infoPKG-INFO
writing dependency_links to lmfit.egg-infodependency_links.txt
writing requirements to lmfit.egg-inforequires.txt
writing top-level names to lmfit.egg-infotop_level.txt
reading manifest file 'lmfit.egg-infoSOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'README.txt'
warning: no previously-included files found matching '*.pyc'
warning: no previously-included files found matching 'core.*'
warning: no previously-included files found matching '*~'
warning: no previously-included files found matching '*.pdf'
warning: no files found matching '*.dat' under directory 'tests'
warning: no previously-included files matching '*' found under directory 'doc_build'
warning: no previously-included files matching '*.pdf' found under directory 'doc'
writing manifest file 'lmfit.egg-infoSOURCES.txt'
installing library code to buildbdist.win-amd64egg
running install_lib
running build_py
UPDATING buildliblmfit/_version.py
set buildliblmfit/_version.py to '0.9.12'
creating buildbdist.win-amd64egg
creating buildbdist.win-amd64egglmfit
copying buildliblmfitconfidence.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitjsonutils.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitlineshapes.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitminimizer.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitmodel.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitmodels.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitparameter.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitprintfuncs.py -> buildbdist.win-amd64egglmfit
creating buildbdist.win-amd64egglmfitui
copying buildliblmfituibasefitter.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfituiipy_fitter.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfitui__init__.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfit_ampgo.py -> buildbdist.win-amd64egglmfit
copying buildliblmfit_version.py -> buildbdist.win-amd64egglmfit
copying buildliblmfit__init__.py -> buildbdist.win-amd64egglmfit
byte-compiling buildbdist.win-amd64egglmfitconfidence.py to confidence.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitjsonutils.py to jsonutils.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitlineshapes.py to lineshapes.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitminimizer.py to minimizer.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitmodel.py to model.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitmodels.py to models.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitparameter.py to parameter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitprintfuncs.py to printfuncs.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfituibasefitter.py to basefitter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfituiipy_fitter.py to ipy_fitter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitui__init__.py to __init__.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit_ampgo.py to _ampgo.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit_version.py to _version.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit__init__.py to __init__.cpython-37.pyc
creating buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infoPKG-INFO -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infoSOURCES.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infodependency_links.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-inforequires.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infotop_level.txt -> buildbdist.win-amd64eggEGG-INFO
zip_safe flag not set; analyzing archive contents...
creating 'distlmfit-0.9.12-py3.7.egg' and adding 'buildbdist.win-amd64egg' to it
removing 'buildbdist.win-amd64egg' (and everything under it)
Processing lmfit-0.9.12-py3.7.egg
Removing c:usersre090anaconda3libsite-packageslmfit-0.9.12-py3.7.egg
Copying lmfit-0.9.12-py3.7.egg to c:usersre090anaconda3libsite-packages
lmfit 0.9.12 is already the active version in easy-install.pth
Installed c:usersre090anaconda3libsite-packageslmfit-0.9.12-py3.7.egg
Processing dependencies for lmfit==0.9.12
Searching for uncertainties>=3.0
Reading https://pypi.org/simple/uncertainties/
Download error on https://pypi.org/simple/uncertainties/: unknown url type: https -- Some packages may not be found!
Couldn't find index page for 'uncertainties' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.org/simple/
Download error on https://pypi.org/simple/: unknown url type: https -- Some packages may not be found!
No local packages or working download links found for uncertainties>=3.0
error: Could not find suitable distribution for Requirement.parse('uncertainties>=3.0')
This package actually runs well in other Windows 10 computer. But I got this error message on another newer Windows 10 computer. I'm wondering if it is the system's problem, which cannot be easily solved.
Do anybody know how to fix it?
python python-3.x lmfit
add a comment |
I try to install lmfit package on my Windows 10 computer. Because I could not install the package by typing: pip install lmfit
I typed: python setup.py install
. Then it shows:
running install
running bdist_egg
running egg_info
writing lmfit.egg-infoPKG-INFO
writing dependency_links to lmfit.egg-infodependency_links.txt
writing requirements to lmfit.egg-inforequires.txt
writing top-level names to lmfit.egg-infotop_level.txt
reading manifest file 'lmfit.egg-infoSOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'README.txt'
warning: no previously-included files found matching '*.pyc'
warning: no previously-included files found matching 'core.*'
warning: no previously-included files found matching '*~'
warning: no previously-included files found matching '*.pdf'
warning: no files found matching '*.dat' under directory 'tests'
warning: no previously-included files matching '*' found under directory 'doc_build'
warning: no previously-included files matching '*.pdf' found under directory 'doc'
writing manifest file 'lmfit.egg-infoSOURCES.txt'
installing library code to buildbdist.win-amd64egg
running install_lib
running build_py
UPDATING buildliblmfit/_version.py
set buildliblmfit/_version.py to '0.9.12'
creating buildbdist.win-amd64egg
creating buildbdist.win-amd64egglmfit
copying buildliblmfitconfidence.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitjsonutils.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitlineshapes.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitminimizer.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitmodel.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitmodels.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitparameter.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitprintfuncs.py -> buildbdist.win-amd64egglmfit
creating buildbdist.win-amd64egglmfitui
copying buildliblmfituibasefitter.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfituiipy_fitter.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfitui__init__.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfit_ampgo.py -> buildbdist.win-amd64egglmfit
copying buildliblmfit_version.py -> buildbdist.win-amd64egglmfit
copying buildliblmfit__init__.py -> buildbdist.win-amd64egglmfit
byte-compiling buildbdist.win-amd64egglmfitconfidence.py to confidence.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitjsonutils.py to jsonutils.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitlineshapes.py to lineshapes.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitminimizer.py to minimizer.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitmodel.py to model.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitmodels.py to models.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitparameter.py to parameter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitprintfuncs.py to printfuncs.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfituibasefitter.py to basefitter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfituiipy_fitter.py to ipy_fitter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitui__init__.py to __init__.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit_ampgo.py to _ampgo.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit_version.py to _version.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit__init__.py to __init__.cpython-37.pyc
creating buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infoPKG-INFO -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infoSOURCES.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infodependency_links.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-inforequires.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infotop_level.txt -> buildbdist.win-amd64eggEGG-INFO
zip_safe flag not set; analyzing archive contents...
creating 'distlmfit-0.9.12-py3.7.egg' and adding 'buildbdist.win-amd64egg' to it
removing 'buildbdist.win-amd64egg' (and everything under it)
Processing lmfit-0.9.12-py3.7.egg
Removing c:usersre090anaconda3libsite-packageslmfit-0.9.12-py3.7.egg
Copying lmfit-0.9.12-py3.7.egg to c:usersre090anaconda3libsite-packages
lmfit 0.9.12 is already the active version in easy-install.pth
Installed c:usersre090anaconda3libsite-packageslmfit-0.9.12-py3.7.egg
Processing dependencies for lmfit==0.9.12
Searching for uncertainties>=3.0
Reading https://pypi.org/simple/uncertainties/
Download error on https://pypi.org/simple/uncertainties/: unknown url type: https -- Some packages may not be found!
Couldn't find index page for 'uncertainties' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.org/simple/
Download error on https://pypi.org/simple/: unknown url type: https -- Some packages may not be found!
No local packages or working download links found for uncertainties>=3.0
error: Could not find suitable distribution for Requirement.parse('uncertainties>=3.0')
This package actually runs well in other Windows 10 computer. But I got this error message on another newer Windows 10 computer. I'm wondering if it is the system's problem, which cannot be easily solved.
Do anybody know how to fix it?
python python-3.x lmfit
I try to install lmfit package on my Windows 10 computer. Because I could not install the package by typing: pip install lmfit
I typed: python setup.py install
. Then it shows:
running install
running bdist_egg
running egg_info
writing lmfit.egg-infoPKG-INFO
writing dependency_links to lmfit.egg-infodependency_links.txt
writing requirements to lmfit.egg-inforequires.txt
writing top-level names to lmfit.egg-infotop_level.txt
reading manifest file 'lmfit.egg-infoSOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'README.txt'
warning: no previously-included files found matching '*.pyc'
warning: no previously-included files found matching 'core.*'
warning: no previously-included files found matching '*~'
warning: no previously-included files found matching '*.pdf'
warning: no files found matching '*.dat' under directory 'tests'
warning: no previously-included files matching '*' found under directory 'doc_build'
warning: no previously-included files matching '*.pdf' found under directory 'doc'
writing manifest file 'lmfit.egg-infoSOURCES.txt'
installing library code to buildbdist.win-amd64egg
running install_lib
running build_py
UPDATING buildliblmfit/_version.py
set buildliblmfit/_version.py to '0.9.12'
creating buildbdist.win-amd64egg
creating buildbdist.win-amd64egglmfit
copying buildliblmfitconfidence.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitjsonutils.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitlineshapes.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitminimizer.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitmodel.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitmodels.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitparameter.py -> buildbdist.win-amd64egglmfit
copying buildliblmfitprintfuncs.py -> buildbdist.win-amd64egglmfit
creating buildbdist.win-amd64egglmfitui
copying buildliblmfituibasefitter.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfituiipy_fitter.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfitui__init__.py -> buildbdist.win-amd64egglmfitui
copying buildliblmfit_ampgo.py -> buildbdist.win-amd64egglmfit
copying buildliblmfit_version.py -> buildbdist.win-amd64egglmfit
copying buildliblmfit__init__.py -> buildbdist.win-amd64egglmfit
byte-compiling buildbdist.win-amd64egglmfitconfidence.py to confidence.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitjsonutils.py to jsonutils.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitlineshapes.py to lineshapes.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitminimizer.py to minimizer.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitmodel.py to model.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitmodels.py to models.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitparameter.py to parameter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitprintfuncs.py to printfuncs.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfituibasefitter.py to basefitter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfituiipy_fitter.py to ipy_fitter.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfitui__init__.py to __init__.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit_ampgo.py to _ampgo.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit_version.py to _version.cpython-37.pyc
byte-compiling buildbdist.win-amd64egglmfit__init__.py to __init__.cpython-37.pyc
creating buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infoPKG-INFO -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infoSOURCES.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infodependency_links.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-inforequires.txt -> buildbdist.win-amd64eggEGG-INFO
copying lmfit.egg-infotop_level.txt -> buildbdist.win-amd64eggEGG-INFO
zip_safe flag not set; analyzing archive contents...
creating 'distlmfit-0.9.12-py3.7.egg' and adding 'buildbdist.win-amd64egg' to it
removing 'buildbdist.win-amd64egg' (and everything under it)
Processing lmfit-0.9.12-py3.7.egg
Removing c:usersre090anaconda3libsite-packageslmfit-0.9.12-py3.7.egg
Copying lmfit-0.9.12-py3.7.egg to c:usersre090anaconda3libsite-packages
lmfit 0.9.12 is already the active version in easy-install.pth
Installed c:usersre090anaconda3libsite-packageslmfit-0.9.12-py3.7.egg
Processing dependencies for lmfit==0.9.12
Searching for uncertainties>=3.0
Reading https://pypi.org/simple/uncertainties/
Download error on https://pypi.org/simple/uncertainties/: unknown url type: https -- Some packages may not be found!
Couldn't find index page for 'uncertainties' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.org/simple/
Download error on https://pypi.org/simple/: unknown url type: https -- Some packages may not be found!
No local packages or working download links found for uncertainties>=3.0
error: Could not find suitable distribution for Requirement.parse('uncertainties>=3.0')
This package actually runs well in other Windows 10 computer. But I got this error message on another newer Windows 10 computer. I'm wondering if it is the system's problem, which cannot be easily solved.
Do anybody know how to fix it?
python python-3.x lmfit
python python-3.x lmfit
asked Jan 19 at 9:12
TimTim
258
258
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Hm, not sure what the problem is -- it should work. The uncertainties
dependency is spelled correctly and is available on PyPI. It is also available on conda channels conda-forge
and gsecars
. That is, either
pip install uncertainties
or
conda install -c gsecars uncertainties
or
conda install -c conda-forge uncertainties
should work.
But, to be clear pip install lmfit
should also have worked. Any idea why that did not work?
pip install lmfit
doesn't work and shows:pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
...
– Tim
Jan 22 at 19:47
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54265600%2fhow-to-install-lmfit-package-on-python3-on-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Hm, not sure what the problem is -- it should work. The uncertainties
dependency is spelled correctly and is available on PyPI. It is also available on conda channels conda-forge
and gsecars
. That is, either
pip install uncertainties
or
conda install -c gsecars uncertainties
or
conda install -c conda-forge uncertainties
should work.
But, to be clear pip install lmfit
should also have worked. Any idea why that did not work?
pip install lmfit
doesn't work and shows:pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
...
– Tim
Jan 22 at 19:47
add a comment |
Hm, not sure what the problem is -- it should work. The uncertainties
dependency is spelled correctly and is available on PyPI. It is also available on conda channels conda-forge
and gsecars
. That is, either
pip install uncertainties
or
conda install -c gsecars uncertainties
or
conda install -c conda-forge uncertainties
should work.
But, to be clear pip install lmfit
should also have worked. Any idea why that did not work?
pip install lmfit
doesn't work and shows:pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
...
– Tim
Jan 22 at 19:47
add a comment |
Hm, not sure what the problem is -- it should work. The uncertainties
dependency is spelled correctly and is available on PyPI. It is also available on conda channels conda-forge
and gsecars
. That is, either
pip install uncertainties
or
conda install -c gsecars uncertainties
or
conda install -c conda-forge uncertainties
should work.
But, to be clear pip install lmfit
should also have worked. Any idea why that did not work?
Hm, not sure what the problem is -- it should work. The uncertainties
dependency is spelled correctly and is available on PyPI. It is also available on conda channels conda-forge
and gsecars
. That is, either
pip install uncertainties
or
conda install -c gsecars uncertainties
or
conda install -c conda-forge uncertainties
should work.
But, to be clear pip install lmfit
should also have worked. Any idea why that did not work?
answered Jan 19 at 19:12
M NewvilleM Newville
2,8932719
2,8932719
pip install lmfit
doesn't work and shows:pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
...
– Tim
Jan 22 at 19:47
add a comment |
pip install lmfit
doesn't work and shows:pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
...
– Tim
Jan 22 at 19:47
pip install lmfit
doesn't work and shows: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
...– Tim
Jan 22 at 19:47
pip install lmfit
doesn't work and shows: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
...– Tim
Jan 22 at 19:47
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54265600%2fhow-to-install-lmfit-package-on-python3-on-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown