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

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현