FancyImpute installation in Anaconda
I was trying to install fancyimpute library on my Windows system. I am using Spyder on the Anaconda Navigator. I have tried the following on the command prompt as Administrator, still it shows
ModuleNotFoundError: No module named 'fancyimpute'
conda install -c https://conda.binstar.org/eswears cvxopt
pip install keras
pip install fancyimpute
Also installed Visual C++ Compiler for Python 2.7
I am using Python 3.6.1
Kindly help :)
python machine-learning anaconda
add a comment |
I was trying to install fancyimpute library on my Windows system. I am using Spyder on the Anaconda Navigator. I have tried the following on the command prompt as Administrator, still it shows
ModuleNotFoundError: No module named 'fancyimpute'
conda install -c https://conda.binstar.org/eswears cvxopt
pip install keras
pip install fancyimpute
Also installed Visual C++ Compiler for Python 2.7
I am using Python 3.6.1
Kindly help :)
python machine-learning anaconda
A different idea could be to use docker to construct exactly the python environment you want. Specifically I had some problem with airflow and xgboost. But with docker it was quite easy to run both.
– Quickbeam2k1
Aug 18 '17 at 18:32
add a comment |
I was trying to install fancyimpute library on my Windows system. I am using Spyder on the Anaconda Navigator. I have tried the following on the command prompt as Administrator, still it shows
ModuleNotFoundError: No module named 'fancyimpute'
conda install -c https://conda.binstar.org/eswears cvxopt
pip install keras
pip install fancyimpute
Also installed Visual C++ Compiler for Python 2.7
I am using Python 3.6.1
Kindly help :)
python machine-learning anaconda
I was trying to install fancyimpute library on my Windows system. I am using Spyder on the Anaconda Navigator. I have tried the following on the command prompt as Administrator, still it shows
ModuleNotFoundError: No module named 'fancyimpute'
conda install -c https://conda.binstar.org/eswears cvxopt
pip install keras
pip install fancyimpute
Also installed Visual C++ Compiler for Python 2.7
I am using Python 3.6.1
Kindly help :)
python machine-learning anaconda
python machine-learning anaconda
asked May 29 '17 at 9:40
Anand ZutshiAnand Zutshi
5519
5519
A different idea could be to use docker to construct exactly the python environment you want. Specifically I had some problem with airflow and xgboost. But with docker it was quite easy to run both.
– Quickbeam2k1
Aug 18 '17 at 18:32
add a comment |
A different idea could be to use docker to construct exactly the python environment you want. Specifically I had some problem with airflow and xgboost. But with docker it was quite easy to run both.
– Quickbeam2k1
Aug 18 '17 at 18:32
A different idea could be to use docker to construct exactly the python environment you want. Specifically I had some problem with airflow and xgboost. But with docker it was quite easy to run both.
– Quickbeam2k1
Aug 18 '17 at 18:32
A different idea could be to use docker to construct exactly the python environment you want. Specifically I had some problem with airflow and xgboost. But with docker it was quite easy to run both.
– Quickbeam2k1
Aug 18 '17 at 18:32
add a comment |
4 Answers
4
active
oldest
votes
Thanks MyopicVisage. Your suggestion worked for me with a minor change as below.
conda install ecos
conda install CVXcanon
pip install fancyimpute
add a comment |
I found installing the dependent libraries with conda would allow you to install fancyimpute. Specifically, I had to install ecos and CVXcanon; you may need to install others, do so in the order of the warning messages.
Use the commands in the command prompt:
conda install ecos
conda install CVXcanon
conda install fancyimpute
add a comment |
you can do pip install fancyimpute-0.0.4.tar.gz to install the package after downloading fancyimpute-0.0.4.tar.gz.
add a comment |
This answer from another thread did the trick for me. Otherwise I was getting error: Microsoft Visual C++ 14.0 required.
https://stackoverflow.com/a/49986365/755640
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%2f44239269%2ffancyimpute-installation-in-anaconda%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks MyopicVisage. Your suggestion worked for me with a minor change as below.
conda install ecos
conda install CVXcanon
pip install fancyimpute
add a comment |
Thanks MyopicVisage. Your suggestion worked for me with a minor change as below.
conda install ecos
conda install CVXcanon
pip install fancyimpute
add a comment |
Thanks MyopicVisage. Your suggestion worked for me with a minor change as below.
conda install ecos
conda install CVXcanon
pip install fancyimpute
Thanks MyopicVisage. Your suggestion worked for me with a minor change as below.
conda install ecos
conda install CVXcanon
pip install fancyimpute
edited Feb 1 '18 at 2:12
Pang
6,9011664102
6,9011664102
answered Jan 31 '18 at 11:41
Regi MathewRegi Mathew
4151615
4151615
add a comment |
add a comment |
I found installing the dependent libraries with conda would allow you to install fancyimpute. Specifically, I had to install ecos and CVXcanon; you may need to install others, do so in the order of the warning messages.
Use the commands in the command prompt:
conda install ecos
conda install CVXcanon
conda install fancyimpute
add a comment |
I found installing the dependent libraries with conda would allow you to install fancyimpute. Specifically, I had to install ecos and CVXcanon; you may need to install others, do so in the order of the warning messages.
Use the commands in the command prompt:
conda install ecos
conda install CVXcanon
conda install fancyimpute
add a comment |
I found installing the dependent libraries with conda would allow you to install fancyimpute. Specifically, I had to install ecos and CVXcanon; you may need to install others, do so in the order of the warning messages.
Use the commands in the command prompt:
conda install ecos
conda install CVXcanon
conda install fancyimpute
I found installing the dependent libraries with conda would allow you to install fancyimpute. Specifically, I had to install ecos and CVXcanon; you may need to install others, do so in the order of the warning messages.
Use the commands in the command prompt:
conda install ecos
conda install CVXcanon
conda install fancyimpute
answered Aug 18 '17 at 18:27
MyopicVisageMyopicVisage
518621
518621
add a comment |
add a comment |
you can do pip install fancyimpute-0.0.4.tar.gz to install the package after downloading fancyimpute-0.0.4.tar.gz.
add a comment |
you can do pip install fancyimpute-0.0.4.tar.gz to install the package after downloading fancyimpute-0.0.4.tar.gz.
add a comment |
you can do pip install fancyimpute-0.0.4.tar.gz to install the package after downloading fancyimpute-0.0.4.tar.gz.
you can do pip install fancyimpute-0.0.4.tar.gz to install the package after downloading fancyimpute-0.0.4.tar.gz.
answered Nov 15 '17 at 7:13
Harshit MehtaHarshit Mehta
1457
1457
add a comment |
add a comment |
This answer from another thread did the trick for me. Otherwise I was getting error: Microsoft Visual C++ 14.0 required.
https://stackoverflow.com/a/49986365/755640
add a comment |
This answer from another thread did the trick for me. Otherwise I was getting error: Microsoft Visual C++ 14.0 required.
https://stackoverflow.com/a/49986365/755640
add a comment |
This answer from another thread did the trick for me. Otherwise I was getting error: Microsoft Visual C++ 14.0 required.
https://stackoverflow.com/a/49986365/755640
This answer from another thread did the trick for me. Otherwise I was getting error: Microsoft Visual C++ 14.0 required.
https://stackoverflow.com/a/49986365/755640
answered Dec 31 '18 at 8:04
wilkaswilkas
646826
646826
add a comment |
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%2f44239269%2ffancyimpute-installation-in-anaconda%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
A different idea could be to use docker to construct exactly the python environment you want. Specifically I had some problem with airflow and xgboost. But with docker it was quite easy to run both.
– Quickbeam2k1
Aug 18 '17 at 18:32