私はHaskellスタック(lts-6.12リゾルバ)を使用してChartにsmall demo programを設定して実行しようとしています。 stack new
、stack init
などでプロジェクトを作成し、生成されたMain.hs
を変更してデモコードを追加しました。また、ChartとChart-cairoパッケージを.cabalファイルに追加し、stack build
を実行しました。それが最終的に行われていたとき、とてもたくさんインストールされたパッケージの、チャートやグラフ、カイロを含め、出力から判断すると、それがMain.hs
をコンパイルしようとしましたが、次のエラーで失敗しました:もスタックすることができますどのようにスタックはチャートまたはチャート - カイロを見つけることができません。カバールファイルがコールしますが、
/home/asdf/my-project/app/Main.hs:4:8:
Could not find module ‘Graphics.Rendering.Chart.Easy’
It is a member of the hidden package ‘[email protected]_Cz416CvPROo70VikOoIoki’.
Perhaps you need to add ‘Chart’ to the build-depends in your .cabal file.
Use -v to see a list of the files searched for.
/home/asdf/my-project/app/Main.hs:5:8:
Could not find module ‘Graphics.Rendering.Chart.Backend.Cairo’
It is a member of the hidden package ‘[email protected]_I1HGJHEm7pvIiSoYgOrXbq’.
Perhaps you need to add ‘Chart-cairo’ to the build-depends in your .cabal file.
Use -v to see a list of the files searched for.
これらのパッケージを正常にロードした後、何らかの形で後で見つけることができませんか?どのようにして私の.cabalファイルに依存関係を置くように頼んでもらうには、どうやってそれを神経から(jk)得ることができますか?ここで
は、依存関係のリストです:
$ stack list-dependencies
Chart 1.6
Chart-cairo 1.6
StateVar 1.1.0.4
adjunctions 4.3
array 0.5.1.0
base 4.8.2.0
base-orphans 0.5.4
bifunctors 5.2
binary 0.7.5.0
bytestring 0.10.6.0
cairo 0.13.1.1
colour 2.3.3
comonad 4.2.7.2
containers 0.5.6.2
contravariant 1.4
data-default-class 0.0.1
deepseq 1.4.1.1
distributive 0.5.0.2
exceptions 0.8.3
filepath 1.4.0.0
free 4.12.4
ghc-prim 0.4.0.0
hashable 1.2.4.0
hmatrix 0.17.0.2
integer-gmp 1.0.0.0
kan-extensions 4.2.3
lens 4.13
machine-learning 0.1.0.0
mtl 2.2.1
old-locale 1.0.0.7
operational 0.2.3.3
parallel 3.2.1.0
prelude-extras 0.4.0.3
primitive 0.6.1.0
profunctors 5.2
random 1.1
reflection 2.1.2
semigroupoids 5.0.1
semigroups 0.18.1
split 0.2.3.1
stm 2.4.4.1
storable-complex 0.2.2
tagged 0.8.4
template-haskell 2.10.0.0
text 1.2.2.1
time 1.5.0.1
transformers 0.4.2.0
transformers-compat 0.4.0.4
unordered-containers 0.2.7.1
utf8-string 1.0.1.1
vector 0.11.0.0
void 0.7.1
.cabalファイルを表示できますか? – ErikR
'実行可能な'スタンザ、 'ライブラリ'スタンザ、またはその両方を持っていますか? – ErikR
@ErikRあなたがカバールファイルをリクエストした後、私はちょうどこのことを理解しました。私はそれを匿名化しました。それは確かにスタンの混乱です。私は複数のものがあるとは思わなかったので、私が見た最初の '' build-depends''に依存関係を追加しました。あなたがそのような効果に対する何らかの答えを作ったら、私はそれを受け入れます。ありがとう! – nclark