4

我正在尝试expt根据此答案使用功能,但是当我尝试(use 'clojure.math.numeric-tower)在 REPL 中执行此操作时出现错误

user> (use 'clojure.math.numeric-tower)
(use 'clojure.math.numeric-tower)FileNotFoundException Could not locate clojure/math/numeric_tower__init.class or clojure/math/numeric_tower.clj on classpath:   clojure.lang.RT.load (RT.java:443)

我认为我需要按照此处的说明放置 Leiningen 依赖信息

[org.clojure/math.numeric-tower "0.0.2"]

在我的project.clj, 我做到了,但我仍然得到同样的错误。我究竟做错了什么?


编辑

在这个答案中,我去了我的项目目录并做了lein deps

a@b:~/command-line-args$ lein deps
Retrieving org/clojure/math.numeric-tower/0.0.2/math.numeric-tower-0.0.2.pom from central
Retrieving org/clojure/math.numeric-tower/0.0.2/math.numeric-tower-0.0.2.jar from central
a@b:~/command-line-args$ 

但我仍然在 REPL 中遇到同样的错误。


编辑2

根据 Vidya 的回答,我正在尝试使用 Pomegranate 但没有成功。这是我尝试过的。我究竟做错了什么:

user> (use '[cemerick.pomegranate :only (add-dependencies)])
nil
user> (add-dependencies :coordinate '[[org.clojure/math.numeric-tower "0.0.2"]]
                        :repositories (merge cemerick.pomegranate.aether/maven-central
                                             {"clojars" "http://clojars.org/repo"}))
{}
user> (require '(numeric-tower core stats charts))
FileNotFoundException Could not locate numeric_tower/core__init.class or numeric_tower/core.clj on classpath:   clojure.lang.RT.load (RT.java:443)
user> (require 'clojure.contrib.math)
FileNotFoundException Could not locate clojure/contrib/math__init.class or clojure/contrib/math.clj on classpath:   clojure.lang.RT.load (RT.java:443)
user> 
4

1 回答 1

5

这是一个正确配置的项目示例,可与之进行比较:

项目.clj:

(defproject math-example "0.1.0-SNAPSHOT"                            
  :description "FIXME: write description"                            
  :url "http://example.com/FIXME"                                    
  :license {:name "Eclipse Public License"                           
            :url "http://www.eclipse.org/legal/epl-v10.html"}        
  :dependencies [[org.clojure/clojure "1.5.1"]                       
                 [org.clojure/math.numeric-tower "0.0.2"]]) 

src/math_example/core.clj:

(ns math-example.core                                                
  (:require [clojure.math.numeric-tower :as math]))                  

(def x (math/expt 2 10)) 

回复:

math-example.core> (math/expt 2 10)                                  
1024                                                                 
math-example.core> x                                                 
1024                                                                 
math-example.core> 

通常,使用大多数 clojure 库应该不会比添加依赖项并向:require命名空间添加标签(或者:use如果您愿意,也可以添加标签)更难。

于 2013-11-09T01:04:23.937 回答