Using PyVISA with Python 2.7; Cannot import visa or pyvisa module
I have installed:
NI VISA and
followed the instructions in FAQ for Homebrew:
"My Mac .apps don’t find /usr/local/bin utilities!"
GUI apps on macOS don’t have /usr/local/bin in their PATH by default.
If you’re on Mountain Lion or later, you can fix this by running sudo
launchctl config user path "/usr/local/bin:$PATH" and then rebooting,
as documented in man launchctl. Note that this sets the launchctl PATH
for all users.
Also installed the following:
(pip install ):
- pyvisa
- pyserial
- numpy
I am not sure what I am not doing correctly but I am not able to import visa.py or pyvisa.py.
When I send this code in:
import sys print(sys.path)
sys.path.insert(0,"/home/tranjonathan/Documents/pyvisa-master/build/lib")
import visa
This is what IDLE returns:
['/Users/tranjonathan/Desktop', '/Users/tranjonathan/Documents', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/Users/tranjonathan/Library/Python/2.7/lib/python/site-packages', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages']
Traceback (most recent call last):
File "/Users/tranjonathan/Desktop/test_script.py", line 7, in
import visa
ImportError: No module named visa
tl;dr
I still have not been able to import visa or pyvisa. Need to control external test equipment using USB/GPIB
python macos python-2.7 visa pyvisa
add a comment |
I have installed:
NI VISA and
followed the instructions in FAQ for Homebrew:
"My Mac .apps don’t find /usr/local/bin utilities!"
GUI apps on macOS don’t have /usr/local/bin in their PATH by default.
If you’re on Mountain Lion or later, you can fix this by running sudo
launchctl config user path "/usr/local/bin:$PATH" and then rebooting,
as documented in man launchctl. Note that this sets the launchctl PATH
for all users.
Also installed the following:
(pip install ):
- pyvisa
- pyserial
- numpy
I am not sure what I am not doing correctly but I am not able to import visa.py or pyvisa.py.
When I send this code in:
import sys print(sys.path)
sys.path.insert(0,"/home/tranjonathan/Documents/pyvisa-master/build/lib")
import visa
This is what IDLE returns:
['/Users/tranjonathan/Desktop', '/Users/tranjonathan/Documents', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/Users/tranjonathan/Library/Python/2.7/lib/python/site-packages', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages']
Traceback (most recent call last):
File "/Users/tranjonathan/Desktop/test_script.py", line 7, in
import visa
ImportError: No module named visa
tl;dr
I still have not been able to import visa or pyvisa. Need to control external test equipment using USB/GPIB
python macos python-2.7 visa pyvisa
add a comment |
I have installed:
NI VISA and
followed the instructions in FAQ for Homebrew:
"My Mac .apps don’t find /usr/local/bin utilities!"
GUI apps on macOS don’t have /usr/local/bin in their PATH by default.
If you’re on Mountain Lion or later, you can fix this by running sudo
launchctl config user path "/usr/local/bin:$PATH" and then rebooting,
as documented in man launchctl. Note that this sets the launchctl PATH
for all users.
Also installed the following:
(pip install ):
- pyvisa
- pyserial
- numpy
I am not sure what I am not doing correctly but I am not able to import visa.py or pyvisa.py.
When I send this code in:
import sys print(sys.path)
sys.path.insert(0,"/home/tranjonathan/Documents/pyvisa-master/build/lib")
import visa
This is what IDLE returns:
['/Users/tranjonathan/Desktop', '/Users/tranjonathan/Documents', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/Users/tranjonathan/Library/Python/2.7/lib/python/site-packages', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages']
Traceback (most recent call last):
File "/Users/tranjonathan/Desktop/test_script.py", line 7, in
import visa
ImportError: No module named visa
tl;dr
I still have not been able to import visa or pyvisa. Need to control external test equipment using USB/GPIB
python macos python-2.7 visa pyvisa
I have installed:
NI VISA and
followed the instructions in FAQ for Homebrew:
"My Mac .apps don’t find /usr/local/bin utilities!"
GUI apps on macOS don’t have /usr/local/bin in their PATH by default.
If you’re on Mountain Lion or later, you can fix this by running sudo
launchctl config user path "/usr/local/bin:$PATH" and then rebooting,
as documented in man launchctl. Note that this sets the launchctl PATH
for all users.
Also installed the following:
(pip install ):
- pyvisa
- pyserial
- numpy
I am not sure what I am not doing correctly but I am not able to import visa.py or pyvisa.py.
When I send this code in:
import sys print(sys.path)
sys.path.insert(0,"/home/tranjonathan/Documents/pyvisa-master/build/lib")
import visa
This is what IDLE returns:
['/Users/tranjonathan/Desktop', '/Users/tranjonathan/Documents', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/Users/tranjonathan/Library/Python/2.7/lib/python/site-packages', '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages']
Traceback (most recent call last):
File "/Users/tranjonathan/Desktop/test_script.py", line 7, in
import visa
ImportError: No module named visa
tl;dr
I still have not been able to import visa or pyvisa. Need to control external test equipment using USB/GPIB
python macos python-2.7 visa pyvisa
python macos python-2.7 visa pyvisa
edited Nov 21 '18 at 0:03
bjtransistor
asked Nov 20 '18 at 23:50
bjtransistorbjtransistor
63
63
add a comment |
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53403337%2fusing-pyvisa-with-python-2-7-cannot-import-visa-or-pyvisa-module%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
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53403337%2fusing-pyvisa-with-python-2-7-cannot-import-visa-or-pyvisa-module%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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