|
|
Line 1: |
Line 1: |
| Where ISU CS Alumni have ended up, in alphabetical order by location ... If you are an ISU CS alumnus and don't see your current place of employment listed please get in touch with the a CS faculty member.
| | Anaconda is a Python environment manager so users can manage and install their own versions of python and packages. |
|
| |
|
| =Corporate/Government=
| | The following are recommended steps for installing Anaconda within your account on the CS server. For student accounts, this should only be done if your instructor has told you to do so (since the installation does take up some space, we don't want it installed on every account on the system). |
|
| |
|
| ==Terre Haute area== | | =Install Steps= |
| City Government of Terre Haute, Clabber Girl, Hopebridge, Indiana State University, Infraware Inc., North American Lighting, Police Technical LLC, Rose-Hulman Institute of Technology, Vigo County Public Library
| |
|
| |
|
| ==Indianapolis Area==
| | Basic install instructions: https://docs.conda.io/projects/conda/en/latest/user-guide/install/linux.html |
| Allegion, Anthem, Beckman Coulter Life Sciences, Clarian Health Partners, Community Health Network, Defense Finance and Accounting Service, Dow AgroSciences, Eli Lilly and Company, GyanSys, Ernst and Young, Exacq Technologies, Heritage Group, Indiana Health Information Exchange, Indiana State Government, Indianapolis Power & Light Company, Indianapolis Zoological Society, Infosys, Infrastructure and Energy Alternatives, Interactive Intelligence / Genesys, IU Health Riley's Childrens Hospital, Knowledge Services, Liberty Mutual, LifeOmic, MicroMetl Corporation, myCOI, PAR North America, Pondurance, Protective Insurance, ProTrans Development, Republic Airways, Rolls Royce, Ryan Consulting Group, Salesforce, T2 Systems, Van Ausdall & Farrar, Wishard Health Services
| |
|
| |
|
| ==Indiana & Vicinity== | | Run: |
| AIM Specialty Health, AllScripts, Aon, Aprimo, Ascension Technologies, Aunalytics, Bioanalytical Systems Inc., Cummins, Engineering Computer Network - Purdue University, FireEye, Five-Star Technology Solutions, Health Alliance, High Wire Networks, Hinge Health, iGenMedia, Keller Schroeder, Kimball International, Mead Johnson, Midrange Professionals Inc., NAP Gladu, Naval Surface Warfare Center - Crane Division, Northern Illinois University, Pringle Technologies Inc., Purdue University, Rally Health, Rediminds, RLI Corp, SCHOTT Gemtron, Sherwin Williams, State Farm Insurance, TrueScripts Management Services, Turnkey Computer Systems, University of Illinois Urbana-Champaign, USRRB, Vincennes University, Zirmed
| | <pre> |
| | # within bash... |
| | # check archive for latest version, and update the file variable accordingly |
| | # https://repo.anaconda.com/archive/ |
| | base_url="https://repo.anaconda.com/archive" |
| | file="Anaconda3-2023.09-0-Linux-x86_64.sh" |
|
| |
|
| ==US==
| | mkdir -p ~/Downloads |
| 4C Insights, Accenture, Aeronautical Radio Incorporated (ARINC), AirWatch, Amazon, American Society of Composers and Publishers, Apple, Astra Inc., AU Optronics, Bank of America, Blackboard, Boston Scientific, Budweiser, CACI, Cap Gemini S.A., Caterpillar, CenturyLink, Cisco, Cogent Infotech, Columbia Sports, Dell, Department of Defense, DigitalOcean, Egiants Technologies, Epic Systems, Euclid Elementz, Foxconn, GalaxE Solutions, Geico, Georgia-Pacific LLC, GlobalFoundries, Gogo Business Aviation, Google, Halliburton, Hewlett-Packard, Internet Brands, ITHAKA, JPMorgan Chase, Kovarus Professional Services, Lawrence Livermore National laboratory, Lockheed-Martin, Los Alamos National Labs, Maine Department of Education, MAQ Software, Miami University, Microsoft, National Security Agency, Northrop Grumman, Ohio Department of Commerce, Oracle, Principal Financial Group, Proofpoint, Randolph Brooks Federal Credit Union, Sally Beauty Holdings, Red Hat Software, Sprint, Starbucks Corp, State of Alabama CARES, SWM International, Travelers Insurance, Sallie Mae, The George Washington University, Thomson Reuters, TracFone Wireless Inc., United Healthcare, United States Air Force, United States Army, University of Texas at Dallas, Veritas, Verizon, Veterans Health Administration, Visa, VRBO, Walmart eCommerce, Walt Disney, Wells Fargo
| | cd ~/Downloads |
|
| |
|
| ==International==
| | wget $base_url/"$file" |
| Academia Sinica, Chinese Academy of Sciences, Dar Al-Hekma University, Majmaah University, Petronas ICT Sdn Bhd, Phonon Communications Pvt Ltd, Sadara Chemical Company, Saudi Aramco, Saudi Electricity, Savola Group, SFDA, Tata Consultancy Services, Universiti Sains Malaysia
| |
|
| |
|
| =PhD Programs=
| | chmod +x "$file" |
| Some of the universities where our graduates have had offers of assistantships for PhD programs -
| | ./"$file" |
| University of Arizona, University of California-Merced, University of California-Riverside, Emory University, Georgia University, Indiana University Bloomington, University of Louisville, University of Massachusetts-Boston, University of Miami, University of Pittsburgh, Queen's University (Ontario), Simon Fraser University, University of Maine, Syracuse University, University of Texas-Dallas, University of Utah, Virginia Tech
| | </pre> |
| | |
| | When asked whether to update your shell profile to automatically initialize conda, type yes. Then log out and log back in. Run <code>conda --help</code> and you should have it installed. |
| | |
| | For <code>bash</code> shells, ensure that your <code>.bashrc</code> is configured to run in your <code>.bash_profile</code>: |
| | <pre> |
| | ### ~/.bash_profile |
| | |
| | if [ -f ~/.bashrc ]; then |
| | . ~/.bashrc |
| | fi |
| | </pre> |
| | |
| | Turn off auto-loading of conda base environment when you login: |
| | <pre> |
| | # From command line: |
| | conda config --set auto_activate_base false |
| | |
| | # Then to turn conda environment on or off run: |
| | conda activate |
| | # or |
| | conda deactivate |
| | </pre> |
Anaconda is a Python environment manager so users can manage and install their own versions of python and packages.
The following are recommended steps for installing Anaconda within your account on the CS server. For student accounts, this should only be done if your instructor has told you to do so (since the installation does take up some space, we don't want it installed on every account on the system).
Install Steps
Basic install instructions: https://docs.conda.io/projects/conda/en/latest/user-guide/install/linux.html
Run:
# within bash...
# check archive for latest version, and update the file variable accordingly
# https://repo.anaconda.com/archive/
base_url="https://repo.anaconda.com/archive"
file="Anaconda3-2023.09-0-Linux-x86_64.sh"
mkdir -p ~/Downloads
cd ~/Downloads
wget $base_url/"$file"
chmod +x "$file"
./"$file"
When asked whether to update your shell profile to automatically initialize conda, type yes. Then log out and log back in. Run conda --help
and you should have it installed.
For bash
shells, ensure that your .bashrc
is configured to run in your .bash_profile
:
### ~/.bash_profile
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
Turn off auto-loading of conda base environment when you login:
# From command line:
conda config --set auto_activate_base false
# Then to turn conda environment on or off run:
conda activate
# or
conda deactivate