Where should I search for the installed R packages by conda?What is the difference between pip and conda?Trouble Installing geoR packagepackage ‘pbkrtest’ is not available (for R version 3.2.2)conda install fails even i found the package by conda info packageRCDK package installation fails in R studioInstall udunits2 package for R3.3R from anaconda / Jupyter notebook doesn't work anymoreError after installing packageInstalling GPU R packages on UbuntuWhy installed “igraph” package in R is showing error upon loading?

Programmatically add log information in all renderings(controller, view) html

Escape Velocity - Won't the orbital path just become larger with higher initial velocity?

Boss wants me to ignore a software API license prohibiting mass download

How do some PhD students get 10+ papers? Is that what I need for landing good faculty position?

How big are the Choedan Kal?

Are differences between uniformly distributed numbers uniformly distributed?

Update Office without opening an Office application

What is a good class if we remove subclasses?

If I animate and control a zombie, does it benefit from Undead Fortitude when it's reduced to 0 HP?

Is it okay to write non-offensive humor into meeting minutes?

What are those bumps on top of the Antonov-225?

Does Nightpack Ambusher's second ability trigger if I cast spells during the end step?

My cat is a houdini

What are these funnel-looking green things in my yard?

Why is Python 2.7 still the default Python version in Ubuntu?

Why does my purified Pokémon need to be healed?

How far did Gandalf and the Balrog drop from the bridge in Moria?

A continuous water "planet" ring around a star

Symbol: Put a smile symbol under a plus

The cat ate your input again!

Markov-chain sentence generator in Python

Website error: "Walmart can’t use this browser"

Is there a way to encourage or even force airlines and booking engines to show options with overnight layovers?

Boss asked a co-worker to assault me



Where should I search for the installed R packages by conda?


What is the difference between pip and conda?Trouble Installing geoR packagepackage ‘pbkrtest’ is not available (for R version 3.2.2)conda install fails even i found the package by conda info packageRCDK package installation fails in R studioInstall udunits2 package for R3.3R from anaconda / Jupyter notebook doesn't work anymoreError after installing packageInstalling GPU R packages on UbuntuWhy installed “igraph” package in R is showing error upon loading?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am installing r packages using conda. It works fine when I use this example format




"conda install -c r r-scales --name condaenv"




But when I want to define installtion directory using --prefix




conda install -c r r-scales --prefix=/opt/local




the package "scale" is installed but I cannot find it in the directory I expect to be




"/opt/local/lib/R/library"




. It is weird because when I try to reinstall this package it says




All requested packages already installed.




that means this package is already installed in defined path. BUT WHERE?
I also try using




conda list




But I cannot find "scales" among installed packages.
UPDATE:
I also tried to use install.packages("scales), but I ran into this error




/opt/anaconda/bin/x86_64-conda_cos6-linux-gnu-ld: cannot find -lm
collect2: error: ld returned 1 exit status make: ***
[/raid60/raid2/opt/local/lib/R/share/make/shlib.mk:6: scales.so] Error
1 ERROR: compilation failed for package ?scales?
* removing ?/raid60/raid2/opt/local/lib/R/library/scales?











share|improve this question


























  • Why not just installing R as is without conda?

    – David Arenburg
    Mar 27 at 10:23











  • Because I have consistently got an error, not only for this package but for many others. I also asked admin to fix it but he did not manage to. That is the error /opt/anaconda/bin/x86_64-conda_cos6-linux-gnu-ld: cannot find -lm collect2: error: ld returned 1 exit status make: *** [/raid60/raid2/opt/local/lib/R/share/make/shlib.mk:6: scales.so] Error 1 ERROR: compilation failed for package ?scales? * removing ?/raid60/raid2/opt/local/lib/R/library/scales?

    – Seyed Omid Nabavi
    Mar 27 at 10:30












  • That's an conda error. I'm asking why using conda in the first place.

    – David Arenburg
    Mar 27 at 10:32











  • Sorry, is not it your question "why did not you use install.packages("scales)?" I did, but I got that error.

    – Seyed Omid Nabavi
    Mar 27 at 10:35












  • Yes, this is what happens when you install conda- it takes over your environment variables and makes you completely depended on it. It is worse than a virus. If I were you, I would uninstall conda and just install R without it.

    – David Arenburg
    Mar 27 at 11:33


















0















I am installing r packages using conda. It works fine when I use this example format




"conda install -c r r-scales --name condaenv"




But when I want to define installtion directory using --prefix




conda install -c r r-scales --prefix=/opt/local




the package "scale" is installed but I cannot find it in the directory I expect to be




"/opt/local/lib/R/library"




. It is weird because when I try to reinstall this package it says




All requested packages already installed.




that means this package is already installed in defined path. BUT WHERE?
I also try using




conda list




But I cannot find "scales" among installed packages.
UPDATE:
I also tried to use install.packages("scales), but I ran into this error




/opt/anaconda/bin/x86_64-conda_cos6-linux-gnu-ld: cannot find -lm
collect2: error: ld returned 1 exit status make: ***
[/raid60/raid2/opt/local/lib/R/share/make/shlib.mk:6: scales.so] Error
1 ERROR: compilation failed for package ?scales?
* removing ?/raid60/raid2/opt/local/lib/R/library/scales?











share|improve this question


























  • Why not just installing R as is without conda?

    – David Arenburg
    Mar 27 at 10:23











  • Because I have consistently got an error, not only for this package but for many others. I also asked admin to fix it but he did not manage to. That is the error /opt/anaconda/bin/x86_64-conda_cos6-linux-gnu-ld: cannot find -lm collect2: error: ld returned 1 exit status make: *** [/raid60/raid2/opt/local/lib/R/share/make/shlib.mk:6: scales.so] Error 1 ERROR: compilation failed for package ?scales? * removing ?/raid60/raid2/opt/local/lib/R/library/scales?

    – Seyed Omid Nabavi
    Mar 27 at 10:30












  • That's an conda error. I'm asking why using conda in the first place.

    – David Arenburg
    Mar 27 at 10:32











  • Sorry, is not it your question "why did not you use install.packages("scales)?" I did, but I got that error.

    – Seyed Omid Nabavi
    Mar 27 at 10:35












  • Yes, this is what happens when you install conda- it takes over your environment variables and makes you completely depended on it. It is worse than a virus. If I were you, I would uninstall conda and just install R without it.

    – David Arenburg
    Mar 27 at 11:33














0












0








0








I am installing r packages using conda. It works fine when I use this example format




"conda install -c r r-scales --name condaenv"




But when I want to define installtion directory using --prefix




conda install -c r r-scales --prefix=/opt/local




the package "scale" is installed but I cannot find it in the directory I expect to be




"/opt/local/lib/R/library"




. It is weird because when I try to reinstall this package it says




All requested packages already installed.




that means this package is already installed in defined path. BUT WHERE?
I also try using




conda list




But I cannot find "scales" among installed packages.
UPDATE:
I also tried to use install.packages("scales), but I ran into this error




/opt/anaconda/bin/x86_64-conda_cos6-linux-gnu-ld: cannot find -lm
collect2: error: ld returned 1 exit status make: ***
[/raid60/raid2/opt/local/lib/R/share/make/shlib.mk:6: scales.so] Error
1 ERROR: compilation failed for package ?scales?
* removing ?/raid60/raid2/opt/local/lib/R/library/scales?











share|improve this question
















I am installing r packages using conda. It works fine when I use this example format




"conda install -c r r-scales --name condaenv"




But when I want to define installtion directory using --prefix




conda install -c r r-scales --prefix=/opt/local




the package "scale" is installed but I cannot find it in the directory I expect to be




"/opt/local/lib/R/library"




. It is weird because when I try to reinstall this package it says




All requested packages already installed.




that means this package is already installed in defined path. BUT WHERE?
I also try using




conda list




But I cannot find "scales" among installed packages.
UPDATE:
I also tried to use install.packages("scales), but I ran into this error




/opt/anaconda/bin/x86_64-conda_cos6-linux-gnu-ld: cannot find -lm
collect2: error: ld returned 1 exit status make: ***
[/raid60/raid2/opt/local/lib/R/share/make/shlib.mk:6: scales.so] Error
1 ERROR: compilation failed for package ?scales?
* removing ?/raid60/raid2/opt/local/lib/R/library/scales?








r conda






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 27 at 10:33







Seyed Omid Nabavi

















asked Mar 27 at 10:18









Seyed Omid NabaviSeyed Omid Nabavi

438 bronze badges




438 bronze badges















  • Why not just installing R as is without conda?

    – David Arenburg
    Mar 27 at 10:23











  • Because I have consistently got an error, not only for this package but for many others. I also asked admin to fix it but he did not manage to. That is the error /opt/anaconda/bin/x86_64-conda_cos6-linux-gnu-ld: cannot find -lm collect2: error: ld returned 1 exit status make: *** [/raid60/raid2/opt/local/lib/R/share/make/shlib.mk:6: scales.so] Error 1 ERROR: compilation failed for package ?scales? * removing ?/raid60/raid2/opt/local/lib/R/library/scales?

    – Seyed Omid Nabavi
    Mar 27 at 10:30












  • That's an conda error. I'm asking why using conda in the first place.

    – David Arenburg
    Mar 27 at 10:32











  • Sorry, is not it your question "why did not you use install.packages("scales)?" I did, but I got that error.

    – Seyed Omid Nabavi
    Mar 27 at 10:35












  • Yes, this is what happens when you install conda- it takes over your environment variables and makes you completely depended on it. It is worse than a virus. If I were you, I would uninstall conda and just install R without it.

    – David Arenburg
    Mar 27 at 11:33


















  • Why not just installing R as is without conda?

    – David Arenburg
    Mar 27 at 10:23











  • Because I have consistently got an error, not only for this package but for many others. I also asked admin to fix it but he did not manage to. That is the error /opt/anaconda/bin/x86_64-conda_cos6-linux-gnu-ld: cannot find -lm collect2: error: ld returned 1 exit status make: *** [/raid60/raid2/opt/local/lib/R/share/make/shlib.mk:6: scales.so] Error 1 ERROR: compilation failed for package ?scales? * removing ?/raid60/raid2/opt/local/lib/R/library/scales?

    – Seyed Omid Nabavi
    Mar 27 at 10:30












  • That's an conda error. I'm asking why using conda in the first place.

    – David Arenburg
    Mar 27 at 10:32











  • Sorry, is not it your question "why did not you use install.packages("scales)?" I did, but I got that error.

    – Seyed Omid Nabavi
    Mar 27 at 10:35












  • Yes, this is what happens when you install conda- it takes over your environment variables and makes you completely depended on it. It is worse than a virus. If I were you, I would uninstall conda and just install R without it.

    – David Arenburg
    Mar 27 at 11:33

















Why not just installing R as is without conda?

– David Arenburg
Mar 27 at 10:23





Why not just installing R as is without conda?

– David Arenburg
Mar 27 at 10:23













Because I have consistently got an error, not only for this package but for many others. I also asked admin to fix it but he did not manage to. That is the error /opt/anaconda/bin/x86_64-conda_cos6-linux-gnu-ld: cannot find -lm collect2: error: ld returned 1 exit status make: *** [/raid60/raid2/opt/local/lib/R/share/make/shlib.mk:6: scales.so] Error 1 ERROR: compilation failed for package ?scales? * removing ?/raid60/raid2/opt/local/lib/R/library/scales?

– Seyed Omid Nabavi
Mar 27 at 10:30






Because I have consistently got an error, not only for this package but for many others. I also asked admin to fix it but he did not manage to. That is the error /opt/anaconda/bin/x86_64-conda_cos6-linux-gnu-ld: cannot find -lm collect2: error: ld returned 1 exit status make: *** [/raid60/raid2/opt/local/lib/R/share/make/shlib.mk:6: scales.so] Error 1 ERROR: compilation failed for package ?scales? * removing ?/raid60/raid2/opt/local/lib/R/library/scales?

– Seyed Omid Nabavi
Mar 27 at 10:30














That's an conda error. I'm asking why using conda in the first place.

– David Arenburg
Mar 27 at 10:32





That's an conda error. I'm asking why using conda in the first place.

– David Arenburg
Mar 27 at 10:32













Sorry, is not it your question "why did not you use install.packages("scales)?" I did, but I got that error.

– Seyed Omid Nabavi
Mar 27 at 10:35






Sorry, is not it your question "why did not you use install.packages("scales)?" I did, but I got that error.

– Seyed Omid Nabavi
Mar 27 at 10:35














Yes, this is what happens when you install conda- it takes over your environment variables and makes you completely depended on it. It is worse than a virus. If I were you, I would uninstall conda and just install R without it.

– David Arenburg
Mar 27 at 11:33






Yes, this is what happens when you install conda- it takes over your environment variables and makes you completely depended on it. It is worse than a virus. If I were you, I would uninstall conda and just install R without it.

– David Arenburg
Mar 27 at 11:33













0






active

oldest

votes










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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55374774%2fwhere-should-i-search-for-the-installed-r-packages-by-conda%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55374774%2fwhere-should-i-search-for-the-installed-r-packages-by-conda%23new-answer', 'question_page');

);

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







Popular posts from this blog

Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴