- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
You can find 'utils' in your Anaconda environment folder
~\envs\<anaconda env>\share\pydaal_examples\examples\python\source\utils
There are number of ways you can access this module in your python code. Below are a few
1. Move the utils folder to your current working directory
or
2. Append this folder to the system path in your Python script
import sys sys.path.append(<'utils' path>)
or
3. Move the utils folder to site-packages folder of your environment.
site-packages can be found here - ~\envs\<anaconda env>\Lib\site-packages
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
Thank you for your reply.
I have solved the problem according to your method.
I installed the package utils through pip install utils in the cmd before, so I guess the utils installed through cmd is different from the one you said.
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page