Can't find a usable init.tcl and conflict version tcl
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I just downloaded the linux version of this software (http://inano.au.dk/about/research-centers/nmr/software/simpson/) after unpacking the file I run sudo bash install.sh
and all the dependencies were installed on my ubuntu 18.04 however when I try to run the test file using simpson test.in
it gives me the following errors
SIMPSON is unable to initialize Tcl interpreter. Is init.tcl on your path?
Error: Can't find a usable init.tcl in the following directories:
/usr/share/simpson/tcl8.6 /usr/share/tcltk/tcl8.6 ./lib/tcl8.6 ./lib/tcl8.6 ./library ./library ./tcl8.6.5/library ./tcl8.6.5/library
/usr/share/tcltk/tcl8.6/init.tcl: version conflict for package "Tcl": have 8.6.5, need exactly 8.6.8
version conflict for package "Tcl": have 8.6.5, need exactly 8.6.8
while executing
"package require -exact Tcl 8.6.8"
(file "/usr/share/tcltk/tcl8.6/init.tcl" line 19)
invoked from within
"source /usr/share/tcltk/tcl8.6/init.tcl"
("uplevel" body line 1)
invoked from within
"uplevel #0 [list source $tclfile]"
Can anyone help me with this? I guess it should be simple but I'm a noob at this stuff
18.04 tcl
add a comment |
I just downloaded the linux version of this software (http://inano.au.dk/about/research-centers/nmr/software/simpson/) after unpacking the file I run sudo bash install.sh
and all the dependencies were installed on my ubuntu 18.04 however when I try to run the test file using simpson test.in
it gives me the following errors
SIMPSON is unable to initialize Tcl interpreter. Is init.tcl on your path?
Error: Can't find a usable init.tcl in the following directories:
/usr/share/simpson/tcl8.6 /usr/share/tcltk/tcl8.6 ./lib/tcl8.6 ./lib/tcl8.6 ./library ./library ./tcl8.6.5/library ./tcl8.6.5/library
/usr/share/tcltk/tcl8.6/init.tcl: version conflict for package "Tcl": have 8.6.5, need exactly 8.6.8
version conflict for package "Tcl": have 8.6.5, need exactly 8.6.8
while executing
"package require -exact Tcl 8.6.8"
(file "/usr/share/tcltk/tcl8.6/init.tcl" line 19)
invoked from within
"source /usr/share/tcltk/tcl8.6/init.tcl"
("uplevel" body line 1)
invoked from within
"uplevel #0 [list source $tclfile]"
Can anyone help me with this? I guess it should be simple but I'm a noob at this stuff
18.04 tcl
I think the issue is that thesimpson
installer is bundled with its own (out of date) versions oflibtcl8.6.so
(among other shared libraries) which conflicts with the "system" version. What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out theTCL_LIBRARY
andLD_LIBRARY_PATH
exports in the<bindir>/simpson
wrapper script - so that the bundled libs are ignored altogether.
– steeldriver
Feb 15 at 15:00
steeldriver can you please give more insights on how to do this? I'm quite noob at this
– user9251343
Mar 27 at 18:35
Please see answer below
– steeldriver
Mar 27 at 21:51
add a comment |
I just downloaded the linux version of this software (http://inano.au.dk/about/research-centers/nmr/software/simpson/) after unpacking the file I run sudo bash install.sh
and all the dependencies were installed on my ubuntu 18.04 however when I try to run the test file using simpson test.in
it gives me the following errors
SIMPSON is unable to initialize Tcl interpreter. Is init.tcl on your path?
Error: Can't find a usable init.tcl in the following directories:
/usr/share/simpson/tcl8.6 /usr/share/tcltk/tcl8.6 ./lib/tcl8.6 ./lib/tcl8.6 ./library ./library ./tcl8.6.5/library ./tcl8.6.5/library
/usr/share/tcltk/tcl8.6/init.tcl: version conflict for package "Tcl": have 8.6.5, need exactly 8.6.8
version conflict for package "Tcl": have 8.6.5, need exactly 8.6.8
while executing
"package require -exact Tcl 8.6.8"
(file "/usr/share/tcltk/tcl8.6/init.tcl" line 19)
invoked from within
"source /usr/share/tcltk/tcl8.6/init.tcl"
("uplevel" body line 1)
invoked from within
"uplevel #0 [list source $tclfile]"
Can anyone help me with this? I guess it should be simple but I'm a noob at this stuff
18.04 tcl
I just downloaded the linux version of this software (http://inano.au.dk/about/research-centers/nmr/software/simpson/) after unpacking the file I run sudo bash install.sh
and all the dependencies were installed on my ubuntu 18.04 however when I try to run the test file using simpson test.in
it gives me the following errors
SIMPSON is unable to initialize Tcl interpreter. Is init.tcl on your path?
Error: Can't find a usable init.tcl in the following directories:
/usr/share/simpson/tcl8.6 /usr/share/tcltk/tcl8.6 ./lib/tcl8.6 ./lib/tcl8.6 ./library ./library ./tcl8.6.5/library ./tcl8.6.5/library
/usr/share/tcltk/tcl8.6/init.tcl: version conflict for package "Tcl": have 8.6.5, need exactly 8.6.8
version conflict for package "Tcl": have 8.6.5, need exactly 8.6.8
while executing
"package require -exact Tcl 8.6.8"
(file "/usr/share/tcltk/tcl8.6/init.tcl" line 19)
invoked from within
"source /usr/share/tcltk/tcl8.6/init.tcl"
("uplevel" body line 1)
invoked from within
"uplevel #0 [list source $tclfile]"
Can anyone help me with this? I guess it should be simple but I'm a noob at this stuff
18.04 tcl
18.04 tcl
edited Feb 15 at 14:26
user9251343
asked Feb 15 at 11:18
user9251343user9251343
83
83
I think the issue is that thesimpson
installer is bundled with its own (out of date) versions oflibtcl8.6.so
(among other shared libraries) which conflicts with the "system" version. What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out theTCL_LIBRARY
andLD_LIBRARY_PATH
exports in the<bindir>/simpson
wrapper script - so that the bundled libs are ignored altogether.
– steeldriver
Feb 15 at 15:00
steeldriver can you please give more insights on how to do this? I'm quite noob at this
– user9251343
Mar 27 at 18:35
Please see answer below
– steeldriver
Mar 27 at 21:51
add a comment |
I think the issue is that thesimpson
installer is bundled with its own (out of date) versions oflibtcl8.6.so
(among other shared libraries) which conflicts with the "system" version. What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out theTCL_LIBRARY
andLD_LIBRARY_PATH
exports in the<bindir>/simpson
wrapper script - so that the bundled libs are ignored altogether.
– steeldriver
Feb 15 at 15:00
steeldriver can you please give more insights on how to do this? I'm quite noob at this
– user9251343
Mar 27 at 18:35
Please see answer below
– steeldriver
Mar 27 at 21:51
I think the issue is that the
simpson
installer is bundled with its own (out of date) versions of libtcl8.6.so
(among other shared libraries) which conflicts with the "system" version. What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out the TCL_LIBRARY
and LD_LIBRARY_PATH
exports in the <bindir>/simpson
wrapper script - so that the bundled libs are ignored altogether.– steeldriver
Feb 15 at 15:00
I think the issue is that the
simpson
installer is bundled with its own (out of date) versions of libtcl8.6.so
(among other shared libraries) which conflicts with the "system" version. What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out the TCL_LIBRARY
and LD_LIBRARY_PATH
exports in the <bindir>/simpson
wrapper script - so that the bundled libs are ignored altogether.– steeldriver
Feb 15 at 15:00
steeldriver can you please give more insights on how to do this? I'm quite noob at this
– user9251343
Mar 27 at 18:35
steeldriver can you please give more insights on how to do this? I'm quite noob at this
– user9251343
Mar 27 at 18:35
Please see answer below
– steeldriver
Mar 27 at 21:51
Please see answer below
– steeldriver
Mar 27 at 21:51
add a comment |
1 Answer
1
active
oldest
votes
I think the issue is that the simpson
installer is bundled with its own (out of date) versions of libtcl8.6.so
(among other shared libraries) which conflicts with the "system" version.
What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out the TCL_LIBRARY
and LD_LIBRARY_PATH
exports in the <bindir>/simpson
wrapper script, where <bindir>
is the location you supplied to the installer script - so that the bundled libs are ignored altogether.
So for example if <bindir>
is ~/bin
, then ~/bin/simpson
should look something like
#!/bin/sh
#export TCL_LIBRARY=/home/steeldriver/share/tcl8.6
#export LD_LIBRARY_PATH=/home/steeldriver/share
/home/steeldriver/share/simpson4.2.1 "$@"
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f1118480%2fcant-find-a-usable-init-tcl-and-conflict-version-tcl%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think the issue is that the simpson
installer is bundled with its own (out of date) versions of libtcl8.6.so
(among other shared libraries) which conflicts with the "system" version.
What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out the TCL_LIBRARY
and LD_LIBRARY_PATH
exports in the <bindir>/simpson
wrapper script, where <bindir>
is the location you supplied to the installer script - so that the bundled libs are ignored altogether.
So for example if <bindir>
is ~/bin
, then ~/bin/simpson
should look something like
#!/bin/sh
#export TCL_LIBRARY=/home/steeldriver/share/tcl8.6
#export LD_LIBRARY_PATH=/home/steeldriver/share
/home/steeldriver/share/simpson4.2.1 "$@"
add a comment |
I think the issue is that the simpson
installer is bundled with its own (out of date) versions of libtcl8.6.so
(among other shared libraries) which conflicts with the "system" version.
What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out the TCL_LIBRARY
and LD_LIBRARY_PATH
exports in the <bindir>/simpson
wrapper script, where <bindir>
is the location you supplied to the installer script - so that the bundled libs are ignored altogether.
So for example if <bindir>
is ~/bin
, then ~/bin/simpson
should look something like
#!/bin/sh
#export TCL_LIBRARY=/home/steeldriver/share/tcl8.6
#export LD_LIBRARY_PATH=/home/steeldriver/share
/home/steeldriver/share/simpson4.2.1 "$@"
add a comment |
I think the issue is that the simpson
installer is bundled with its own (out of date) versions of libtcl8.6.so
(among other shared libraries) which conflicts with the "system" version.
What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out the TCL_LIBRARY
and LD_LIBRARY_PATH
exports in the <bindir>/simpson
wrapper script, where <bindir>
is the location you supplied to the installer script - so that the bundled libs are ignored altogether.
So for example if <bindir>
is ~/bin
, then ~/bin/simpson
should look something like
#!/bin/sh
#export TCL_LIBRARY=/home/steeldriver/share/tcl8.6
#export LD_LIBRARY_PATH=/home/steeldriver/share
/home/steeldriver/share/simpson4.2.1 "$@"
I think the issue is that the simpson
installer is bundled with its own (out of date) versions of libtcl8.6.so
(among other shared libraries) which conflicts with the "system" version.
What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out the TCL_LIBRARY
and LD_LIBRARY_PATH
exports in the <bindir>/simpson
wrapper script, where <bindir>
is the location you supplied to the installer script - so that the bundled libs are ignored altogether.
So for example if <bindir>
is ~/bin
, then ~/bin/simpson
should look something like
#!/bin/sh
#export TCL_LIBRARY=/home/steeldriver/share/tcl8.6
#export LD_LIBRARY_PATH=/home/steeldriver/share
/home/steeldriver/share/simpson4.2.1 "$@"
answered Mar 27 at 21:50
steeldriversteeldriver
70.8k11115187
70.8k11115187
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1118480%2fcant-find-a-usable-init-tcl-and-conflict-version-tcl%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
I think the issue is that the
simpson
installer is bundled with its own (out of date) versions oflibtcl8.6.so
(among other shared libraries) which conflicts with the "system" version. What I'd suggest is installing ALL of the relevant packages (FFTW, BLAS etc.) from the Ubuntu repos and then commenting out theTCL_LIBRARY
andLD_LIBRARY_PATH
exports in the<bindir>/simpson
wrapper script - so that the bundled libs are ignored altogether.– steeldriver
Feb 15 at 15:00
steeldriver can you please give more insights on how to do this? I'm quite noob at this
– user9251343
Mar 27 at 18:35
Please see answer below
– steeldriver
Mar 27 at 21:51