0% found this document useful (0 votes)
85 views4 pages

Installing Conda Package

Uploaded by

polaris44
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
85 views4 pages

Installing Conda Package

Uploaded by

polaris44
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

PIPESIM

STEADY-STATE MULTIPHASE FLOW SIMULATOR

PIPESIM 2022
Version 2022.1

Installing Python package


Page 1

Copyright © 2022 Schlumberger. All rights reserved.


This work contains the confidential and proprietary trade secrets of Schlumberger and may not be
copied or stored in an information retrieval system, transferred, used, distributed, translated or
retransmitted in any form or by any means, electronic or mechanical, in whole or in part, without the
express written permission of the copyright owner.

Trademarks & Service Marks


Schlumberger, the Schlumberger logotype, and other words or symbols used to identify the
products and services described herein are either trademarks, trade names or service marks of
Schlumberger and its licensors, or are the property of their respective owners. These marks may
not be copied, imitated or used, in whole or in part, without the express prior written permission of
Schlumberger. In addition, covers, page headers, custom graphics, icons, and other design
elements may be service marks, trademarks, and/or trade dress of Schlumberger, and may not be
copied, imitated, or used, in whole or in part, without the express prior written permission of
Schlumberger. Other company, product, and service names are the properties of their respective
owners.

An asterisk (*) is used throughout this document to designate a mark of Schlumberger.

Security Notice
The software described herein is configured to operate with at least the minimum specifications set
out by Schlumberger. You are advised that such minimum specifications are merely
recommendations and not intended to be limiting to configurations that may be used to operate the
software. Similarly, you are advised that the software should be operated in a secure environment
whether such software is operated across a network, on a single system and/or on a plurality of
systems. It is up to you to configure and maintain your networks and/or system(s) in a secure
manner. If you have further questions as to recommendations regarding recommended
specifications or security, please feel free to contact your local Schlumberger representative.

Schlumberger-Private
PIPESIM 2022.1 Installing Python packages Page 2

Installing Python packages


This document describes Python package installation using Conda prompt. User needs to know
which packages should be installed. Be aware that some packages may introduce conflict with
PIPESIM Python Toolkit.

For more information about using the conda package manager in Anaconda Prompt, see the conda
documentation.

Running Python Prompt


Run "Python Prompt (PIPESIM_PTK_2022.1)" with Administrator privilege

1. Click on Windows Start menu


2. Search for Schlumberger PIPESIM 2022.1 -> Python Prompt (PIPESIM_PTK_2022.1)
3. Right-click on the icon, Select More -> Open file location
4. Run Python Prompt (PIPESIM_PTK_2022.1) with Administrator privilege

Checking installed packages


Enter the command in the Python Prompt:
conda list

Searching for packages


To see if a specific package, such as SciPy, is available for installation:
conda search scipy

To see if a specific package, such as SciPy, is available for installation from Anaconda.org:
conda search --override-channels --channel defaults scipy

Installing a conda package


Enter the command:
conda install package-name

Schlumberger-Private
PIPESIM 2022.1 Installing Python packages Page 3

To install multiple packages at once, such as SciPy and cURL:


conda install scipy curl

Installing specific versions of conda packages


Include the desired version number or its prefix after the package name:
conda install package-name=2.3.4

To specify only a major version, run:


conda install package-name=2

These commands install into the environment that is currently active. To install into a named
environment, run:
conda install package-name=2.3.4 -n some-environment

If the package is specific to a Python version, conda uses the version installed in the current or named
environment. For details on versions, dependencies, and channels, see Conda cheat sheet and Conda
Troubleshooting.

Schlumberger-Private

You might also like