web-dev-qa-db-ja.com

Insightデバッガーをインストールするにはどうすればよいですか?

Insightデバッガーが必要な本に沿ってフォローしています。私はマーベリックでそれを見つけませんでした。私はグーグルで調べましたが、debianではもうサポートされていませんが、本当にインストールする必要があります。ソースをコンパイルしようとしてインストールしましたが、起動するたびにtkが見つからないことを通知し続けます。 Sudo aptitude install tkでtkをインストールしてから、同じことを再度実行しようとしました。もう一度コンパイルしましたが、実際には何も変わりません。では、どうすればインストールできますか?

更新:これは私が得るメッセージです

Tk_Init failed: Can't find a usable tk.tcl in the following directories: 
    /usr/local/share/tk8.4 /usr/local/lib/tk8.4 /usr/lib/tk8.4 /usr/local/library /usr/library /usr/tk8.4.1/library /tk8.4.1/library

/usr/local/share/tk8.4/tk.tcl: no event type or button # or keysym
no event type or button # or keysym
    while executing
"bind Listbox <MouseWheel> {
    %W yview scroll [expr {- (%D / 120) * 4}] units
}"
    (file "/usr/local/share/tk8.4/listbox.tcl" line 182)
    invoked from within
"source /usr/local/share/tk8.4/listbox.tcl"
    (in namespace eval "::" script line 1)
    invoked from within
"namespace eval :: [list source [file join $::tk_library $file.tcl]]"
    (procedure "SourceLibFile" line 2)
    invoked from within
"SourceLibFile listbox"
    (in namespace eval "::tk" script line 4)
    invoked from within
"namespace eval ::tk {
 SourceLibFile button
 SourceLibFile entry
 SourceLibFile listbox
 SourceLibFile menu
 SourceLibFile panedwindow
 SourceLibFile ..."
    invoked from within
"if {$::tk_library ne ""} {
    if {[string equal $tcl_platform(platform) "Macintosh"]} {
 proc ::tk::SourceLibFile {file} {
     if {[catch {
  namesp..."
    (file "/usr/local/share/tk8.4/tk.tcl" line 393)
    invoked from within
"source /usr/local/share/tk8.4/tk.tcl"
    ("uplevel" body line 1)
    invoked from within
"uplevel #0 [list source $file]"


This probably means that tk wasn't installed properly.
6
DandyWalker

そのトピックを注意深く読んでください http://ubuntuforums.org/showthread.php?t=1512700&page=2 そして、これをリポジトリに追加してください。 ! https://Edge.launchpad.net/~sevenmachines/+archive/dev

1
user12307

ここからダウンロードしてください: https://Edge.launchpad.net/~sevenmachines/+archive/dev/+packages *

*natty、maverick、lucidのみ

1
Hemal Chevli

Ubuntu tkパッケージは、必要な.tclファイルを/usr/usr/share/tcltk/tk8.4にインストールします。tcltk検索パスを変更できる構成ファイルがあるかどうかを確認します。

0
João Pinto